diff options
author | James Dennett <jdennett@google.com> | 2012-06-17 03:22:59 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-17 03:22:59 +0000 |
commit | 87a2acf1ebe1a315df36f7e0503b592ea8044007 (patch) | |
tree | 8328f54d845300c430f1b49a3d334633aefc2db2 /clang/lib/Basic/SourceManager.cpp | |
parent | 49bba70ec5428fca51b7344a3c2a680b22942053 (diff) | |
download | bcm5719-llvm-87a2acf1ebe1a315df36f7e0503b592ea8044007.tar.gz bcm5719-llvm-87a2acf1ebe1a315df36f7e0503b592ea8044007.zip |
Documentation cleanup: escaped # characters in Doxygen comments.
llvm-svn: 158614
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r-- | clang/lib/Basic/SourceManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 8c8f6363279..66b06ef6ab1 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp @@ -219,7 +219,7 @@ void LineTableInfo::AddLineNote(FileID FID, unsigned Offset, /// AddLineNote This is the same as the previous version of AddLineNote, but is /// used for GNU line markers. If EntryExit is 0, then this doesn't change the -/// presumed #include stack. If it is 1, this is a file entry, if it is 2 then +/// presumed \#include stack. If it is 1, this is a file entry, if it is 2 then /// this is a file exit. FileKind specifies whether this is a system header or /// extern C system header. void LineTableInfo::AddLineNote(FileID FID, unsigned Offset, @@ -1325,7 +1325,7 @@ SourceManager::getFileCharacteristic(SourceLocation Loc) const { } /// Return the filename or buffer identifier of the buffer the location is in. -/// Note that this name does not respect #line directives. Use getPresumedLoc +/// Note that this name does not respect \#line directives. Use getPresumedLoc /// for normal clients. const char *SourceManager::getBufferName(SourceLocation Loc, bool *Invalid) const { @@ -1336,7 +1336,7 @@ const char *SourceManager::getBufferName(SourceLocation Loc, /// getPresumedLoc - This method returns the "presumed" location of a -/// SourceLocation specifies. A "presumed location" can be modified by #line +/// SourceLocation specifies. A "presumed location" can be modified by \#line /// or GNU line marker directives. This provides a view on the data that a /// user should see in diagnostics, for example. /// |