Add header guard to Reusables.h [NFC]

llvm-svn: 358724
This commit is contained in:
Ali Tamur 2019-04-19 00:42:54 +00:00
parent da0f71af7d
commit 5377748d54
1 changed files with 5 additions and 0 deletions

View 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