We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3099269 commit 125c300Copy full SHA for 125c300
src/platform/Linux/bluez/BluezEndpoint.cpp
@@ -621,7 +621,7 @@ CHIP_ERROR BluezEndpoint::ConnectDevice(BluezDevice1 & aDevice)
621
auto params = std::make_pair(this, &aDevice);
622
mConnectCancellable.reset(g_cancellable_new());
623
return PlatformMgrImpl().GLibMatterContextInvokeSync(
624
- +[](typeof(params) * aParams) { return aParams->first->ConnectDeviceImpl(*aParams->second); }, ¶ms);
+ +[](decltype(params) * aParams) { return aParams->first->ConnectDeviceImpl(*aParams->second); }, ¶ms);
625
}
626
627
void BluezEndpoint::CancelConnect()
0 commit comments