diff options
author | James Dennett <jdennett@google.com> | 2012-06-22 05:37:13 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-22 05:37:13 +0000 |
commit | 303d8d49ab56093d0e137e18373e1717d94540dd (patch) | |
tree | f38b912dff934d1ed9d4d1973b7bf2b6b06dcfc2 /clang/lib/Lex/PreprocessingRecord.cpp | |
parent | 1244a0d632529b9d3bdc30f8ccee698a6742f5d9 (diff) | |
download | bcm5719-llvm-303d8d49ab56093d0e137e18373e1717d94540dd.tar.gz bcm5719-llvm-303d8d49ab56093d0e137e18373e1717d94540dd.zip |
Documentation cleanup:
* Use \p param for a parameter reference, not the (erroneous) form \arg param;
* Escape # characters in Doxygen comments as needed.
llvm-svn: 158971
Diffstat (limited to 'clang/lib/Lex/PreprocessingRecord.cpp')
-rw-r--r-- | clang/lib/Lex/PreprocessingRecord.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/PreprocessingRecord.cpp b/clang/lib/Lex/PreprocessingRecord.cpp index 89d19fd52ad..dfdeba3f9cd 100644 --- a/clang/lib/Lex/PreprocessingRecord.cpp +++ b/clang/lib/Lex/PreprocessingRecord.cpp @@ -48,7 +48,7 @@ PreprocessingRecord::PreprocessingRecord(SourceManager &SM, } /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities -/// that source range \arg R encompasses. +/// that source range \p Range encompasses. std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator> PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) { if (Range.isInvalid()) @@ -89,7 +89,7 @@ static bool isPreprocessedEntityIfInFileID(PreprocessedEntity *PPE, FileID FID, /// /// Can be used to avoid implicit deserializations of preallocated /// preprocessed entities if we only care about entities of a specific file -/// and not from files #included in the range given at +/// and not from files \#included in the range given at /// \see getPreprocessedEntitiesInRange. bool PreprocessingRecord::isEntityInFileID(iterator PPEI, FileID FID) { if (FID.isInvalid()) |