From d1f5853d92b28594d8aafbfac4844fff017a5c8c Mon Sep 17 00:00:00 2001 From: Grigoris Pavlakis <grigpavl@ece.auth.gr> Date: Sat, 17 Aug 2019 23:12:18 +0300 Subject: [PATCH] Fix clang-tidy --- src/Services/ParameterService.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/ParameterService.cpp b/src/Services/ParameterService.cpp index 92adcd19..22098471 100644 --- a/src/Services/ParameterService.cpp +++ b/src/Services/ParameterService.cpp @@ -14,7 +14,7 @@ bool ParameterService::addNewParameter(uint8_t ptc, uint8_t pfc, uint32_t initia paramsList.insert(std::make_pair(paramsList.size(), param)); return true; } - catch (etl::map_full) { + catch (etl::map_full &mapFull) { return false; } } @@ -49,7 +49,7 @@ void ParameterService::reportParameterIds(Message& paramIds) { validParams.push_back(p); validIds++; } - catch (etl::map_out_of_bounds) { + catch (etl::map_out_of_bounds &mapOutOfBounds) { ErrorHandler::reportError(paramIds, ErrorHandler::ExecutionStartErrorType::UnknownExecutionStartError); continue; // generate failed start of execution notification & ignore } -- GitLab