]> granicus.if.org Git - clang/commitdiff
Add header guard to Reusables.h [NFC]
authorAli Tamur <tamur@google.com>
Fri, 19 Apr 2019 00:42:54 +0000 (00:42 +0000)
committerAli Tamur <tamur@google.com>
Fri, 19 Apr 2019 00:42:54 +0000 (00:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@358724 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/StaticAnalyzer/Reusables.h

index aede503acb31565e0a92462f145d07899889d7ed..06aed884f6bf4e666a9a2593f939d1cfdc12eff6 100644 (file)
@@ -6,6 +6,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+#ifndef LLVM_CLANG_UNITTESTS_STATICANALYZER_REUSABLES_H
+#define LLVM_CLANG_UNITTESTS_STATICANALYZER_REUSABLES_H
+
 #include "clang/ASTMatchers/ASTMatchFinder.h"
 #include "clang/Frontend/CompilerInstance.h"
 #include "clang/CrossTU/CrossTranslationUnit.h"
@@ -56,3 +59,5 @@ public:
 
 } // namespace ento
 } // namespace clang
+
+#endif