File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
clang/include/clang/Basic Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1429,10 +1429,12 @@ class SourceManager : public RefCountedBase<SourceManager> {
14291429 // / diagnostic.
14301430 unsigned getLineNumber (FileID FID, unsigned FilePos, bool *Invalid = nullptr ) const ;
14311431 unsigned getLineNumber (SourceLocation Loc, bool *Invalid = nullptr ) const ;
1432- unsigned getSpellingLineNumber (SourceLocation Loc, bool *Invalid = nullptr ) const {
1432+ unsigned getSpellingLineNumber (SourceLocation Loc,
1433+ bool *Invalid = nullptr ) const {
14331434 return getLineNumber (getSpellingLoc (Loc), Invalid);
14341435 }
1435- unsigned getExpansionLineNumber (SourceLocation Loc, bool *Invalid = nullptr ) const {
1436+ unsigned getExpansionLineNumber (SourceLocation Loc,
1437+ bool *Invalid = nullptr ) const {
14361438 return getLineNumber (getExpansionLoc (Loc), Invalid);
14371439 }
14381440 unsigned getPresumedLineNumber (SourceLocation Loc, bool *Invalid = nullptr ) const ;
You can’t perform that action at this time.
0 commit comments