]> granicus.if.org Git - clang/commitdiff
Refactor: Simplify boolean conditional return statements in lib/StaticAnalyzer/Frontend
authorAlexander Kornienko <alexfh@google.com>
Mon, 28 Dec 2015 15:19:39 +0000 (15:19 +0000)
committerAlexander Kornienko <alexfh@google.com>
Mon, 28 Dec 2015 15:19:39 +0000 (15:19 +0000)
Summary: Use clang-tidy to simplify boolean conditional return statements

Reviewers: dcoughlin, alexfh

Subscribers: alexfh, cfe-commits

Patch by Richard Thomson!

Differential Revision: http://reviews.llvm.org/D10023

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256497 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp

index d8269dbdad97ca04a8aec0e2ad796b7a10f7a06c..75fa4c651ace7036c8a0410bb766f2cd868d6536 100644 (file)
@@ -83,10 +83,7 @@ bool ClangCheckerRegistry::isCompatibleAPIVersion(const char *versionString) {
 
   // For now, none of the static analyzer API is considered stable.
   // Versions must match exactly.
-  if (strcmp(versionString, CLANG_ANALYZER_API_VERSION_STRING) == 0)
-    return true;
-
-  return false;
+  return strcmp(versionString, CLANG_ANALYZER_API_VERSION_STRING) == 0;
 }
 
 void ClangCheckerRegistry::warnIncompatible(DiagnosticsEngine *diags,