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

include/clang/Lex/Lexer.h

index f5861beb2f29d012519b5ce1df4800b3b8b29df4..ca233de71c397bca2aac04fd74bd427fd0eb2b3f 100644 (file)
@@ -341,7 +341,7 @@ public:
   ///
   /// -begin or end range lies at the start or end of a macro expansion, in
   ///  which case the location will be set to the expansion point, e.g:
-  ///    #define M 1 2
+  ///    \#define M 1 2
   ///    a M
   /// If you have a range [a, 2] (where 2 came from the macro), the function
   /// will return a range for "a M"
@@ -350,8 +350,8 @@ public:
   ///
   /// -The macro is a function macro and the range can be mapped to the macro
   ///  arguments, e.g:
-  ///    #define M 1 2
-  ///    #define FM(x) x
+  ///    \#define M 1 2
+  ///    \#define FM(x) x
   ///    FM(a b M)
   /// if you have range [b, 2], the function will return the file range "b M"
   /// inside the macro arguments.