Skip to content

Commit 2d72009

Browse files
Apply suggestions from code review
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent 1b7c152 commit 2d72009

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/thermostat/linux/thermostat-delegate-impl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ CHIP_ERROR ThermostatDelegate::SetActivePresetHandle(const DataModel::Nullable<B
149149
}
150150

151151
System::Clock::Milliseconds16
152-
ThermostatDelegate::GetAtomicWriteTimeout(DataModel::DecodableList<chip::AttributeId> attributeRequests,
152+
ThermostatDelegate::GetAtomicWriteTimeout(DataModel::DecodableList<AttributeId> attributeRequests,
153153
System::Clock::Milliseconds16 timeoutRequest)
154154
{
155155
auto attributeIdsIter = attributeRequests.begin();

src/app/clusters/thermostat-server/thermostat-delegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Delegate
4545
* @param[out] timeoutRequest The timeout proposed by the client.
4646
* @return The maximum allowed timeout; zero if the request is invalid.
4747
*/
48-
virtual System::Clock::Milliseconds16 GetAtomicWriteTimeout(DataModel::DecodableList<chip::AttributeId> attributeRequests,
48+
virtual System::Clock::Milliseconds16 GetAtomicWriteTimeout(DataModel::DecodableList<AttributeId> attributeRequests,
4949
System::Clock::Milliseconds16 timeoutRequest) = 0;
5050

5151
/**

0 commit comments

Comments
 (0)