From: Ali Tamur Date: Fri, 19 Apr 2019 00:42:54 +0000 (+0000) Subject: Add header guard to Reusables.h [NFC] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11d9d4fc3421ff914d1956370552786ff5617d86;p=clang Add header guard to Reusables.h [NFC] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@358724 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/StaticAnalyzer/Reusables.h b/unittests/StaticAnalyzer/Reusables.h index aede503acb..06aed884f6 100644 --- a/unittests/StaticAnalyzer/Reusables.h +++ b/unittests/StaticAnalyzer/Reusables.h @@ -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