From 4476c2b7f4bf1a651f27c6383d14cee35fda1511 Mon Sep 17 00:00:00 2001 From: kpetridis <petridkon@gmail.com> Date: Sat, 7 May 2022 19:37:26 +0300 Subject: [PATCH] Changed variable name --- inc/Helpers/ForwardControlConfiguration.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/Helpers/ForwardControlConfiguration.hpp b/inc/Helpers/ForwardControlConfiguration.hpp index 45d406db..56c806b3 100644 --- a/inc/Helpers/ForwardControlConfiguration.hpp +++ b/inc/Helpers/ForwardControlConfiguration.hpp @@ -31,7 +31,7 @@ public: * This is the key for the application process configuration map. It contains a pair with the applicationID and * the serviceType. */ - typedef std::pair<uint8_t, uint8_t> appServiceKey; + typedef std::pair<uint8_t, uint8_t> AppServiceKey; /** * Map containing the report type definitions. Each application process has its own ID. The combination of the @@ -46,7 +46,7 @@ public: * already exist in the map, and the requested report type is located in the vector of report types, which corresponds * to the appID and service type. */ - etl::map<appServiceKey, ReportTypeDefinitions, + etl::map<AppServiceKey, ReportTypeDefinitions, ECSSMaxControlledApplicationProcesses * ECSSMaxServiceTypeDefinitions> definitions; -- GitLab