From: James Dennett Date: Fri, 15 Jun 2012 22:33:08 +0000 (+0000) Subject: Documentation cleanup: Escaped backslashes in Doxygen comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c10f841040b1e2951d06d385c8eefbcbe578fcf;p=clang Documentation cleanup: Escaped backslashes in Doxygen comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158567 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Rewrite/Rewriter.cpp b/lib/Rewrite/Rewriter.cpp index f7b0154ef6..7c27114f1c 100644 --- a/lib/Rewrite/Rewriter.cpp +++ b/lib/Rewrite/Rewriter.cpp @@ -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 ' ':