diff options
-rw-r--r-- | clang/unittests/AST/CommentParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/AST/CommentParser.cpp b/clang/unittests/AST/CommentParser.cpp index d1f732cb5fb..327cabd619b 100644 --- a/clang/unittests/AST/CommentParser.cpp +++ b/clang/unittests/AST/CommentParser.cpp @@ -28,7 +28,7 @@ namespace comments { namespace { -const bool DEBUG = true; +const bool MY_DEBUG = true; class CommentParserTest : public ::testing::Test { protected: @@ -62,7 +62,7 @@ FullComment *CommentParserTest::parseString(const char *Source) { Parser P(L, S, Allocator, SourceMgr, Diags, Traits); FullComment *FC = P.parseFullComment(); - if (DEBUG) { + if (MY_DEBUG) { llvm::errs() << "=== Source:\n" << Source << "\n=== AST:\n"; FC->dump(llvm::errs(), &Traits, &SourceMgr); } |