]> granicus.if.org Git - clang/commitdiff
Documentation cleanup: escape #undef in Doxygen comments.
authorJames Dennett <jdennett@google.com>
Sun, 17 Jun 2012 04:00:01 +0000 (04:00 +0000)
committerJames Dennett <jdennett@google.com>
Sun, 17 Jun 2012 04:00:01 +0000 (04:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158625 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/MacroBuilder.h

index 8b552cfd570bb42a4b79b1b902d14de644fe0bcc..cb58376b468ca157ab7ff1b3a6de90b5ec94131c 100644 (file)
@@ -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';
   }