Mercurial > hg > orthanc-stone
changeset 664:9631a10ed3af
fix previous merge
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Wed, 15 May 2019 11:52:35 +0200 |
parents | b8b2bb75fde1 |
children | 419e5662d7a5 |
files | Applications/Wasm/StartupParametersBuilder.cpp |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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; + } } }