diff options
-rw-r--r-- | clang/include/clang/ASTMatchers/ASTMatchersInternal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/ASTMatchers/ASTMatchersInternal.h b/clang/include/clang/ASTMatchers/ASTMatchersInternal.h index d9e4c210009..5039c52915b 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchersInternal.h +++ b/clang/include/clang/ASTMatchers/ASTMatchersInternal.h @@ -44,14 +44,14 @@ #include <string> #include <vector> +namespace clang { +namespace ast_matchers { + /// FIXME: Move into the llvm support library. template <bool> struct CompileAssert {}; #define TOOLING_COMPILE_ASSERT(Expr, Msg) \ typedef CompileAssert<(bool(Expr))> Msg[bool(Expr) ? 1 : -1] -namespace clang { -namespace ast_matchers { - class BoundNodes; namespace internal { |