From 01005984f77d8a9c256da2f1f38a04c2edf0337a Mon Sep 17 00:00:00 2001 From: James Dennett Date: Sun, 17 Jun 2012 04:00:01 +0000 Subject: [PATCH] Documentation cleanup: escape #undef in Doxygen comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158625 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/MacroBuilder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/Basic/MacroBuilder.h b/include/clang/Basic/MacroBuilder.h index 8b552cfd57..cb58376b46 100644 --- a/include/clang/Basic/MacroBuilder.h +++ b/include/clang/Basic/MacroBuilder.h @@ -29,8 +29,8 @@ public: Out << "#define " << Name << ' ' << Value << '\n'; } - /// Append a #undef line for Name. Name should be of the form XXX - /// and we emit "#undef XXX". + /// Append a \#undef line for Name. Name should be of the form XXX + /// and we emit "\#undef XXX". void undefineMacro(const Twine &Name) { Out << "#undef " << Name << '\n'; } -- 2.40.0