r367193 - Buildbot fix for r367190

Gabor Borsik via cfe-commits cfe-commits at lists.llvm.org
Sun Jul 28 07:57:41 PDT 2019


Author: boga95
Date: Sun Jul 28 07:57:41 2019
New Revision: 367193

URL: http://llvm.org/viewvc/llvm-project?rev=367193&view=rev
Log:
Buildbot fix for r367190

Modified:
    cfe/trunk/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp?rev=367193&r1=367192&r2=367193&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp Sun Jul 28 07:57:41 2019
@@ -811,7 +811,7 @@ void ento::registerGenericTaintChecker(C
   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) {




More information about the cfe-commits mailing list