We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb5c9e commit 2e8eab7Copy full SHA for 2e8eab7
src/platform/Linux/bluez/BluezEndpoint.cpp
@@ -662,7 +662,7 @@ CHIP_ERROR BluezEndpoint::ConnectDevice(BluezDevice1 & aDevice)
662
auto params = std::make_pair(this, &aDevice);
663
mConnectCancellable.reset(g_cancellable_new());
664
return PlatformMgrImpl().GLibMatterContextInvokeSync(
665
- +[](typeof(params) * aParams) { return aParams->first->ConnectDeviceImpl(*aParams->second); }, ¶ms);
+ +[](decltype(params) * aParams) { return aParams->first->ConnectDeviceImpl(*aParams->second); }, ¶ms);
666
}
667
668
void BluezEndpoint::CancelConnect()
0 commit comments