From a13675dec5de2a66ef5c47b73ea0e0432f20a4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkjak@fjfi.cvut.cz> Date: Thu, 22 Nov 2018 14:01:19 +0100 Subject: [PATCH] Fixed parsing of list entries in Config::ParameterContainer This got broken in commit 6c4b6f282ed3abbef892e7700260b9b99cdd4363 --- src/TNL/Config/ParameterContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TNL/Config/ParameterContainer.cpp b/src/TNL/Config/ParameterContainer.cpp index 946a1842be..1f01dfcf52 100644 --- a/src/TNL/Config/ParameterContainer.cpp +++ b/src/TNL/Config/ParameterContainer.cpp @@ -206,7 +206,7 @@ parseCommandLine( int argc, char* argv[], std::cerr << "Internal error: Unknown config entry type " << entryType << "." << std::endl; return false; } - if( parsedEntryType[ 0 ] == "List" ) + if( parsedEntryType[ 0 ] == "Containers::List" ) { Containers::List< String >* string_list( 0 ); Containers::List< bool >* bool_list( 0 ); -- GitLab