Skip to content
Snippets Groups Projects
Commit a13675de authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed parsing of list entries in Config::ParameterContainer

This got broken in commit 6c4b6f28
parent abcae81d
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ parseCommandLine( int argc, char* argv[], ...@@ -206,7 +206,7 @@ parseCommandLine( int argc, char* argv[],
std::cerr << "Internal error: Unknown config entry type " << entryType << "." << std::endl; std::cerr << "Internal error: Unknown config entry type " << entryType << "." << std::endl;
return false; return false;
} }
if( parsedEntryType[ 0 ] == "List" ) if( parsedEntryType[ 0 ] == "Containers::List" )
{ {
Containers::List< String >* string_list( 0 ); Containers::List< String >* string_list( 0 );
Containers::List< bool >* bool_list( 0 ); Containers::List< bool >* bool_list( 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment