Move the Yul experimental warning from CommandLineParser to CommandLineInterface and remove stderr from the parser

This commit is contained in:
Kamil Śliwak
2021-11-09 18:16:30 +01:00
parent 3f5471165f
commit 16f62ed43e
4 changed files with 4 additions and 30 deletions
+1 -2
View File
@@ -51,8 +51,7 @@ CommandLineOptions parseCommandLine(vector<string> const& _commandLine)
{
vector<char const*> argv = test::makeArgv(_commandLine);
stringstream serr;
CommandLineParser cliParser(serr);
CommandLineParser cliParser;
cliParser.parse(static_cast<int>(_commandLine.size()), argv.data());
return cliParser.options();
}