mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Tweaks any enums that use uint_max values so that they have hard types to avoid any compiler kerfluffles with C++11 value narrowing, specifically pertaining to clang.
This commit is contained in:
parent
3038e53856
commit
121d65215e
15 changed files with 25 additions and 15 deletions
|
|
@ -53,7 +53,8 @@ void * gMemMutex = NULL;
|
|||
#undef new
|
||||
#endif
|
||||
|
||||
enum MemConstants {
|
||||
enum MemConstants : U32
|
||||
{
|
||||
Allocated = BIT(0),
|
||||
Array = BIT(1),
|
||||
DebugFlag = BIT(2),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue