From 79ec49be42ab2580f8ab3a16f35c3cad3303e4f2 Mon Sep 17 00:00:00 2001 From: SzabolcsGergely Date: Tue, 4 Jun 2024 12:50:20 +0300 Subject: [PATCH] Remove tailing ; --- src/device/DeviceBase.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/device/DeviceBase.cpp b/src/device/DeviceBase.cpp index 9c3ba3e08..74de19df2 100644 --- a/src/device/DeviceBase.cpp +++ b/src/device/DeviceBase.cpp @@ -1352,7 +1352,6 @@ void DeviceBase::setCalibration(CalibrationHandler calibrationDataHandler) { bool success; std::string errorMsg; std::tie(success, errorMsg) = pimpl->rpcClient->call("setCalibration", calibrationDataHandler.getEepromData()).as>(); - ; if(!success) { throw std::runtime_error(errorMsg); }