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