There is a minor code error in MacPlatformIncludes.h.
#ifndef UE_SERVER
#error “WITH_EDITORONLY_DATA must be defined”
#endif
should be
#ifndef UE_SERVER
#error "UE_SERVER must be defined
#endif
There is a minor code error in MacPlatformIncludes.h.
#ifndef UE_SERVER
#error “WITH_EDITORONLY_DATA must be defined”
#endif
should be
#ifndef UE_SERVER
#error "UE_SERVER must be defined
#endif
Hey -
I’m not sure what error this change fixes, however the best option for a code change like this would be to submit a pull request on GitHub (https://github.com/EpicGames/UnrealEngine/compare?expand=1) to have your fix reviewed and possibly integrated directly into the engine.
Cheers