File tree 1 file changed +4
-6
lines changed
clang/include/clang/Basic
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1458,17 +1458,15 @@ class SourceManager : public RefCountedBase<SourceManager> {
1458
1458
1459
1459
// / Returns whether \p Loc is expanded from a macro in a system header.
1460
1460
bool isInSystemMacro (SourceLocation loc) const {
1461
- if (!loc.isMacroID ())
1461
+ if (!loc.isMacroID ())
1462
1462
return false ;
1463
1463
1464
1464
// This happens when the macro is the result of a paste, in that case
1465
1465
// its spelling is the scratch memory, so we take the parent context.
1466
- if (isWrittenInScratchSpace (getSpellingLoc (loc))) {
1466
+ if (isWrittenInScratchSpace (getSpellingLoc (loc)))
1467
1467
return isInSystemHeader (getSpellingLoc (getImmediateMacroCallerLoc (loc)));
1468
- }
1469
- else {
1470
- return isInSystemHeader (getSpellingLoc (loc));
1471
- }
1468
+
1469
+ return isInSystemHeader (getSpellingLoc (loc));
1472
1470
}
1473
1471
1474
1472
// / The size of the SLocEntry that \p FID represents.
You can’t perform that action at this time.
0 commit comments