Silence -Wunused-value warning.
authorTed Kremenek <kremenek@apple.com>
Tue, 2 Oct 2012 21:50:18 +0000 (21:50 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 2 Oct 2012 21:50:18 +0000 (21:50 +0000)
llvm-svn: 165059

clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp

index 2b957c4..e2b7cfc 100644 (file)
@@ -111,6 +111,7 @@ int AnalyzerOptions::getOptionAsInteger(StringRef Name, int DefaultVal) {
   int Res = DefaultVal;
   bool b = V.getAsInteger(10, Res);
   assert(!b && "analyzer-config option should be numeric");
+  (void) b;
   return Res;
 }