summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend
diff options
context:
space:
mode:
authorJames Dennett <jdennett@google.com>2012-06-22 05:33:23 +0000
committerJames Dennett <jdennett@google.com>2012-06-22 05:33:23 +0000
commitf347d93d12c78ac33be51d237415606086504bdd (patch)
tree4627254e2de254cf1b04a3807246f95e793b6eb4 /clang/lib/Frontend
parenta883c0254ceb2e52322fc899235efd94a23b50bc (diff)
downloadbcm5719-llvm-f347d93d12c78ac33be51d237415606086504bdd.tar.gz
bcm5719-llvm-f347d93d12c78ac33be51d237415606086504bdd.zip
Documentation cleanup: escape \ characters in Doxygen comments as needed.
llvm-svn: 158968
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r--clang/lib/Frontend/TextDiagnostic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Frontend/TextDiagnostic.cpp b/clang/lib/Frontend/TextDiagnostic.cpp
index 5c8da05c7bb..d0c3626f3cd 100644
--- a/clang/lib/Frontend/TextDiagnostic.cpp
+++ b/clang/lib/Frontend/TextDiagnostic.cpp
@@ -179,7 +179,7 @@ static void expandTabs(std::string &SourceLine, unsigned TabStop) {
///
/// "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 @@ static void byteToColumn(StringRef SourceLine, unsigned TabStop,
///
/// "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) {
OpenPOWER on IntegriCloud