From: Argyrios Kyrtzidis Date: Mon, 17 Dec 2012 20:10:49 +0000 (+0000) Subject: Don't include the header outside the include guards, it defeats the purpose of the... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8302767d5f577ce1729187abec30404a201804b1;p=clang Don't include the header outside the include guards, it defeats the purpose of the include guards. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170364 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/ClangSACheckers.h b/lib/StaticAnalyzer/Checkers/ClangSACheckers.h index 230baa759c..bea908dfa6 100644 --- a/lib/StaticAnalyzer/Checkers/ClangSACheckers.h +++ b/lib/StaticAnalyzer/Checkers/ClangSACheckers.h @@ -12,11 +12,11 @@ // //===----------------------------------------------------------------------===// -#include "clang/StaticAnalyzer/Checkers/CommonBugCategories.h" - #ifndef LLVM_CLANG_SA_LIB_CHECKERS_CLANGSACHECKERS_H #define LLVM_CLANG_SA_LIB_CHECKERS_CLANGSACHECKERS_H +#include "clang/StaticAnalyzer/Checkers/CommonBugCategories.h" + namespace clang { namespace ento {