Skip to content
Snippets Groups Projects
Commit 9026a1d4 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[clang2ir] do not warn about unknown option: assume clang will handle it

parent fca458c6
No related branches found
No related tags found
No related merge requests found
...@@ -203,7 +203,7 @@ ProcessArguments::process(char** argument, int& currentArgument) { ...@@ -203,7 +203,7 @@ ProcessArguments::process(char** argument, int& currentArgument) {
_doesGenerateImplicitMethods=true; _doesGenerateImplicitMethods=true;
--currentArgument; --currentArgument;
} else { } else {
std::cout << "Ignore unknown argument: " << argument[0] << std::endl; // Let clang handle it directly
--currentArgument; --currentArgument;
} }
return true; return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment