diff options
-rw-r--r-- | include/clang/ASTMatchers/ASTMatchersInternal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/ASTMatchers/ASTMatchersInternal.h b/include/clang/ASTMatchers/ASTMatchersInternal.h index d9e4c21000..5039c52915 100644 --- a/include/clang/ASTMatchers/ASTMatchersInternal.h +++ b/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 { |