# HG changeset patch # User Alain Mazy # Date 1557913955 -7200 # Node ID 9631a10ed3af6ae48661a046bf2dda01d51b301c # Parent b8b2bb75fde1c5b5ea2b6eb58dbaaf340d556f11 fix previous merge diff -r b8b2bb75fde1 -r 9631a10ed3af Applications/Wasm/StartupParametersBuilder.cpp --- a/Applications/Wasm/StartupParametersBuilder.cpp Wed May 15 11:51:22 2019 +0200 +++ b/Applications/Wasm/StartupParametersBuilder.cpp Wed May 15 11:52:35 2019 +0200 @@ -42,6 +42,7 @@ argSs << "--" << std::get<0>(*it); if(std::get<1>(*it).length() > 0) argSs << "=" << std::get<1>(*it); + } std::cout << "simulated cmdLine = \"" << cmdLine.c_str() << "\"\n"; @@ -56,6 +57,7 @@ catch (boost::program_options::error& e) { std::cerr << "Error while parsing the command-line arguments: " << - e.what() << std::endl; } + e.what() << std::endl; + } } }