From: Haojian Wu Date: Fri, 25 Mar 2022 22:51:19 +0000 (+0100) Subject: [pseudo] Add missing header guard for Forest.h X-Git-Tag: upstream/15.0.7~12267 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=41e69fb2453505bd42f5a6bc15369b50adebeac4;p=platform%2Fupstream%2Fllvm.git [pseudo] Add missing header guard for Forest.h --- diff --git a/clang-tools-extra/pseudo/include/clang-pseudo/Forest.h b/clang-tools-extra/pseudo/include/clang-pseudo/Forest.h index 650f913..2b22fd5 100644 --- a/clang-tools-extra/pseudo/include/clang-pseudo/Forest.h +++ b/clang-tools-extra/pseudo/include/clang-pseudo/Forest.h @@ -17,6 +17,9 @@ // //===----------------------------------------------------------------------===// +#ifndef CLANG_PSEUDO_FOREST_H +#define CLANG_PSEUDO_FOREST_H + #include "clang-pseudo/Grammar.h" #include "clang-pseudo/Token.h" #include "llvm/ADT/ArrayRef.h" @@ -176,3 +179,5 @@ private: } // namespace pseudo } // namespace clang + +#endif // CLANG_PSEUDO_FOREST_H