Compilation on macOS 15.5 (24F74) and XCode Version 16.2 (16C5032a) fails with the following errors:
UObjectGlobals.h(738,43): Error : ‘auto’ not allowed in function prototype
738 | constexpr static inline uint32 BuildMask(auto… Types)
UObjectGlobals.h(738,47): Error : type ‘int’ of function parameter pack does not contain any unexpanded parameter packs
738 | constexpr static inline uint32 BuildMask(auto… Types)
UObjectGlobals.h(740,15): Error : pack expansion does not contain any unexpanded parameter packs
740 | return (0 | … | BuildMask(Types));
SceneComponent.h(271,40): Error : default member initializer for bit-field is a C++20 extension [-Werror,-Wc++20-extensions]
271 | uint8 bHasGroupedMoveThisFrame : 1 = false;