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:
Areloch 2016-10-17 01:00:12 -05:00
parent 3038e53856
commit 121d65215e
15 changed files with 25 additions and 15 deletions

View file

@ -73,7 +73,7 @@ class SFXSoundscape
FlagUnique = BIT( 1 ), ///< No other instance of this ambience on stack.
};
enum DirtyBits
enum DirtyBits : U32
{
AmbienceDirty = BIT( 0 ), ///< Associated ambience has changed.
AllDirty = 0xFFFFFFFF