Skip to content

Commit 0783406

Browse files
committedFeb 11, 2019
Format isInSystemMacro after D55782
llvm-svn: 353697
1 parent 4290229 commit 0783406

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
 

‎clang/include/clang/Basic/SourceManager.h

+4-6
Original file line numberDiff line numberDiff line change
@@ -1458,17 +1458,15 @@ class SourceManager : public RefCountedBase<SourceManager> {
14581458

14591459
/// Returns whether \p Loc is expanded from a macro in a system header.
14601460
bool isInSystemMacro(SourceLocation loc) const {
1461-
if(!loc.isMacroID())
1461+
if (!loc.isMacroID())
14621462
return false;
14631463

14641464
// This happens when the macro is the result of a paste, in that case
14651465
// its spelling is the scratch memory, so we take the parent context.
1466-
if (isWrittenInScratchSpace(getSpellingLoc(loc))) {
1466+
if (isWrittenInScratchSpace(getSpellingLoc(loc)))
14671467
return isInSystemHeader(getSpellingLoc(getImmediateMacroCallerLoc(loc)));
1468-
}
1469-
else {
1470-
return isInSystemHeader(getSpellingLoc(loc));
1471-
}
1468+
1469+
return isInSystemHeader(getSpellingLoc(loc));
14721470
}
14731471

14741472
/// The size of the SLocEntry that \p FID represents.

0 commit comments

Comments
 (0)
Please sign in to comment.