[cfe-commits] r158968 - /cfe/trunk/lib/Frontend/TextDiagnostic.cpp
James Dennett
jdennett at google.com
Thu Jun 21 22:33:23 PDT 2012
Author: jdennett
Date: Fri Jun 22 00:33:23 2012
New Revision: 158968
URL: http://llvm.org/viewvc/llvm-project?rev=158968&view=rev
Log:
Documentation cleanup: escape \ characters in Doxygen comments as needed.
Modified:
cfe/trunk/lib/Frontend/TextDiagnostic.cpp
Modified: cfe/trunk/lib/Frontend/TextDiagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/TextDiagnostic.cpp?rev=158968&r1=158967&r2=158968&view=diff
==============================================================================
--- cfe/trunk/lib/Frontend/TextDiagnostic.cpp (original)
+++ cfe/trunk/lib/Frontend/TextDiagnostic.cpp Fri Jun 22 00:33:23 2012
@@ -179,7 +179,7 @@
///
/// "a \t \u3042" -> {0,1,2,8,9,-1,-1,11}
///
-/// (\u3042 is represented in UTF-8 by three bytes and takes two columns to
+/// (\\u3042 is represented in UTF-8 by three bytes and takes two columns to
/// display)
static void byteToColumn(StringRef SourceLine, unsigned TabStop,
SmallVectorImpl<int> &out) {
@@ -213,7 +213,7 @@
///
/// "a \t \u3042" -> {0,1,2,-1,-1,-1,-1,-1,3,4,-1,7}
///
-/// (\u3042 is represented in UTF-8 by three bytes and takes two columns to
+/// (\\u3042 is represented in UTF-8 by three bytes and takes two columns to
/// display)
static void columnToByte(StringRef SourceLine, unsigned TabStop,
SmallVectorImpl<int> &out) {
More information about the cfe-commits
mailing list