From: Argyrios Kyrtzidis Date: Mon, 18 Feb 2013 18:31:16 +0000 (+0000) Subject: Add include guards for CommentVisitor.h X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91d243b6011ed74f6d3a446b1b792f6c11475ee4;p=clang Add include guards for CommentVisitor.h git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175451 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/CommentVisitor.h b/include/clang/AST/CommentVisitor.h index 47867a634f..21641bfeb8 100644 --- a/include/clang/AST/CommentVisitor.h +++ b/include/clang/AST/CommentVisitor.h @@ -7,6 +7,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_CLANG_AST_COMMENTVISITOR_H +#define LLVM_CLANG_AST_COMMENTVISITOR_H + #include "clang/AST/Comment.h" #include "llvm/Support/ErrorHandling.h" @@ -64,3 +67,4 @@ class ConstCommentVisitor : } // end namespace comments } // end namespace clang +#endif