diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-02-18 18:31:16 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-02-18 18:31:16 +0000 |
commit | 774c2479adebe3d498da985640f542ad1b508ee0 (patch) | |
tree | 05444a99d1c4c7874abe91bd3222a7417eaed690 | |
parent | 223ca5c9abe5a19bd0d8677d732b3ca5d512c4da (diff) | |
download | bcm5719-llvm-774c2479adebe3d498da985640f542ad1b508ee0.tar.gz bcm5719-llvm-774c2479adebe3d498da985640f542ad1b508ee0.zip |
Add include guards for CommentVisitor.h
llvm-svn: 175451
-rw-r--r-- | clang/include/clang/AST/CommentVisitor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/include/clang/AST/CommentVisitor.h b/clang/include/clang/AST/CommentVisitor.h index 47867a634fc..21641bfeb89 100644 --- a/clang/include/clang/AST/CommentVisitor.h +++ b/clang/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 |