logic: exception parsing

* disabled clang warnings when analyzed code contains exception related constructs.
This commit is contained in:
malte_langkabel
2016-01-08 13:40:40 +01:00
parent 6d6d67470b
commit ffca8841ea
@@ -105,6 +105,9 @@ std::vector<std::string> CxxParser::getCommandlineArguments(const Arguments& arg
// be AST elements for unused template functions as well.
args.push_back("-fno-delayed-template-parsing");
// The option -fexceptions signals that clang should watch out for exception-related code during analysis.
args.push_back("-fexceptions");
// The option -c signals that no executable is built.
args.push_back("-c");