@@ -468,7 +468,7 @@ void ThermostatAttrAccess::OnFabricRemoved(const FabricTable & fabricTable, Fabr
468
468
}
469
469
}
470
470
471
- void MatterThermostatClusterServerAttributeChangedCallback (const chip::app:: ConcreteAttributePath & attributePath)
471
+ void MatterThermostatClusterServerAttributeChangedCallback (const ConcreteAttributePath & attributePath)
472
472
{
473
473
uint32_t flags;
474
474
if (FeatureMap::Get (attributePath.mEndpointId , &flags) != Status::Success)
@@ -477,7 +477,7 @@ void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::Conc
477
477
return ;
478
478
}
479
479
480
- auto featureMap = chip:: BitMask<Feature, uint32_t >(flags);
480
+ auto featureMap = BitMask<Feature, uint32_t >(flags);
481
481
if (!featureMap.Has (Feature::kPresets ))
482
482
{
483
483
// This server does not support presets, so nothing to do
@@ -487,7 +487,7 @@ void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::Conc
487
487
bool occupied = true ;
488
488
if (featureMap.Has (Feature::kOccupancy ))
489
489
{
490
- chip:: BitMask<OccupancyBitmap, uint8_t > occupancy;
490
+ BitMask<OccupancyBitmap, uint8_t > occupancy;
491
491
if (Occupancy::Get (attributePath.mEndpointId , &occupancy) == Status::Success)
492
492
{
493
493
occupied = occupancy.Has (OccupancyBitmap::kOccupied );
@@ -808,7 +808,7 @@ MatterThermostatClusterServerPreAttributeChangedCallback(const app::ConcreteAttr
808
808
}
809
809
}
810
810
811
- void MatterThermostatClusterServerAttributeChangedCallback (const chip::app:: ConcreteAttributePath & attributePath)
811
+ void MatterThermostatClusterServerAttributeChangedCallback (const ConcreteAttributePath & attributePath)
812
812
{
813
813
Thermostat::MatterThermostatClusterServerAttributeChangedCallback (attributePath);
814
814
}
0 commit comments