We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c96db commit 1eb8573Copy full SHA for 1eb8573
solc/CommandLineParser.cpp
@@ -1053,13 +1053,13 @@ void CommandLineParser::processArgs()
1053
"srcmap-runtime",
1054
};
1055
1056
- for (auto const& option: m_args)
1057
- if (!option.second.defaulted() && !supportedByEvmAsmJsonImport.count(option.first))
+ for (auto const& [optionName, optionValue]: m_args)
+ if (!optionValue.defaulted() && !supportedByEvmAsmJsonImport.count(optionName))
1058
solThrow(
1059
CommandLineValidationError,
1060
fmt::format(
1061
"Option --{} is not supported with --{}.",
1062
- option.first,
+ optionName,
1063
g_strImportEvmAssemblerJson
1064
)
1065
);
0 commit comments