Skip to content

Commit dd76fe2

Browse files
committed
Fix error on Linux CI/CD build
1 parent 97df488 commit dd76fe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/ASTMatchers/ASTMatchers.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3974,8 +3974,8 @@ AST_POLYMORPHIC_MATCHER(isMissingDllImportOrExport,
39743974
PermittedToExport =
39753975
VD->hasGlobalStorage() && VD->getStorageClass() != SC_Static;
39763976
}
3977-
return PermittedToExport && !Node.hasAttr<DLLImportAttr>() &&
3978-
!Node.hasAttr<DLLExportAttr>();
3977+
return PermittedToExport && (!Node.hasAttr<DLLImportAttr>()) &&
3978+
(!Node.hasAttr<DLLExportAttr>());
39793979
}
39803980

39813981
// @unreal: END

0 commit comments

Comments
 (0)