From d366dd84cd1a6e71d1ac561b9f887fe5cc83da88 Mon Sep 17 00:00:00 2001 From: Fantasmos Date: Sat, 28 Oct 2017 12:59:04 +1100 Subject: [PATCH] Updated to naming conventions --- src/config/user_config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/user_config.cpp b/src/config/user_config.cpp index 6184debd0..acdd8c954 100644 --- a/src/config/user_config.cpp +++ b/src/config/user_config.cpp @@ -346,9 +346,9 @@ MapUserConfigParam::MapUserConfigParam(const char* param_name, // add the default list va_list arguments; va_start(arguments, nb_elements); - typedef std::pair PairType; //Necessary to prevent compile error below + typedef std::pair pair_type; //Necessary to prevent compile error below for (int i = 0; i < nb_elements; i++) { - std::pair key_value_pair = va_arg(arguments, PairType); + std::pair key_value_pair = va_arg(arguments, pair_type); m_elements.insert(key_value_pair); } va_end(arguments); // Cleans up the list