forked from OSchip/llvm-project
Correct indentation. No functionality change.
llvm-svn: 177916
This commit is contained in:
parent
c4fc3a2ba5
commit
1d9a5d27ba
|
@ -268,10 +268,10 @@ public:
|
||||||
/// location and does not jump to the expansion or spelling
|
/// location and does not jump to the expansion or spelling
|
||||||
/// location.
|
/// location.
|
||||||
static StringRef getSpelling(SourceLocation loc,
|
static StringRef getSpelling(SourceLocation loc,
|
||||||
SmallVectorImpl<char> &buffer,
|
SmallVectorImpl<char> &buffer,
|
||||||
const SourceManager &SourceMgr,
|
const SourceManager &SourceMgr,
|
||||||
const LangOptions &LangOpts,
|
const LangOptions &LangOpts,
|
||||||
bool *invalid = 0);
|
bool *invalid = 0);
|
||||||
|
|
||||||
/// MeasureTokenLength - Relex the token at the specified location and return
|
/// MeasureTokenLength - Relex the token at the specified location and return
|
||||||
/// its length in bytes in the input file. If the token needs cleaning (e.g.
|
/// its length in bytes in the input file. If the token needs cleaning (e.g.
|
||||||
|
|
|
@ -967,8 +967,8 @@ public:
|
||||||
/// "cleaning", e.g. if it contains trigraphs or escaped newlines
|
/// "cleaning", e.g. if it contains trigraphs or escaped newlines
|
||||||
/// \param invalid If non-null, will be set \c true if an error occurs.
|
/// \param invalid If non-null, will be set \c true if an error occurs.
|
||||||
StringRef getSpelling(SourceLocation loc,
|
StringRef getSpelling(SourceLocation loc,
|
||||||
SmallVectorImpl<char> &buffer,
|
SmallVectorImpl<char> &buffer,
|
||||||
bool *invalid = 0) const {
|
bool *invalid = 0) const {
|
||||||
return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid);
|
return Lexer::getSpelling(loc, buffer, SourceMgr, LangOpts, invalid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue