Skip to content

Commit 0f1968d

Browse files
Update formatting
1 parent 05724b8 commit 0f1968d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/include/clang/Basic/SourceManager.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)