mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 16:03:38 +00:00
fix: guard CXuiStringTable StringTable global from Linux unity builds to prevent class shadowing
This commit is contained in:
parent
35b0781f47
commit
d5db5cc071
|
|
@ -46,7 +46,10 @@ C_4JProfile ProfileManager;
|
|||
#endif
|
||||
#endif // __PS3__
|
||||
CSentientManager SentientManager;
|
||||
#ifndef __linux__
|
||||
// On Linux this global shadows the project's StringTable class name in unity builds
|
||||
CXuiStringTable StringTable;
|
||||
#endif
|
||||
|
||||
#if !defined(_XBOX_ONE) && !defined(__linux__)
|
||||
ATG::XMLParser::XMLParser() {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue