]> granicus.if.org Git - clang/commitdiff
Documentation cleanup: Escaped backslashes in Doxygen comments.
authorJames Dennett <jdennett@google.com>
Fri, 15 Jun 2012 22:33:08 +0000 (22:33 +0000)
committerJames Dennett <jdennett@google.com>
Fri, 15 Jun 2012 22:33:08 +0000 (22:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158567 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Rewrite/Rewriter.cpp

index f7b0154ef6c358807f164f83280718f1156e5819..7c27114f1cfda159e77396b98943663928b895fd 100644 (file)
@@ -30,7 +30,7 @@ raw_ostream &RewriteBuffer::write(raw_ostream &os) const {
 }
 
 /// \brief Return true if this character is non-new-line whitespace:
-/// ' ', '\t', '\f', '\v', '\r'.
+/// ' ', '\\t', '\\f', '\\v', '\\r'.
 static inline bool isWhitespace(unsigned char c) {
   switch (c) {
   case ' ':