Skip to content

Commit a003111

Browse files
committed
Use C++ keyword for getting type
1 parent 125c300 commit a003111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/Tizen/BLEManagerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ void BLEManagerImpl::OnChipDeviceScanned(void * device, const Ble::ChipBLEDevice
542542
/* Initiate Connect */
543543
auto params = std::make_pair(this, deviceInfo->remote_address);
544544
PlatformMgrImpl().GLibMatterContextInvokeSync(
545-
+[](typeof(params) * aParams) { return aParams->first->ConnectChipThing(aParams->second); }, &params);
545+
+[](decltype(params) * aParams) { return aParams->first->ConnectChipThing(aParams->second); }, &params);
546546
}
547547

548548
void BLEManagerImpl::OnScanComplete()

0 commit comments

Comments
 (0)