Buildbot fix for r367190

llvm-svn: 367193
This commit is contained in:
Gabor Borsik 2019-07-28 14:57:41 +00:00
parent b8b8b46a51
commit 2c8098374b
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ void ento::registerGenericTaintChecker(CheckerManager &Mgr) {
llvm::Optional<TaintConfig> Config =
getConfiguration<TaintConfig>(Mgr, Checker, Option, ConfigFile);
if (Config)
Checker->parseConfiguration(Mgr, Option, std::move(Config).getValue());
Checker->parseConfiguration(Mgr, Option, std::move(Config.getValue()));
}
bool ento::shouldRegisterGenericTaintChecker(const LangOptions &LO) {