2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 18:19:17 +00:00

Major scoped-enum refactor

This commit is contained in:
Jack Andersen
2015-11-20 15:16:07 -10:00
parent 4c09ded013
commit e423db32ee
83 changed files with 958 additions and 904 deletions

View File

@@ -12,21 +12,21 @@ class IAllocator
{
public:
virtual ~IAllocator() {}
enum EHint
enum class EHint
{
HintNone = 0x0,
HintTopOfHeap = 0x1,
HintLarge = 0x2
None = 0x0,
TopOfHeap = 0x1,
Large = 0x2
};
enum EScope
enum class EScope
{
ScopeNone = 0,
ScopeDefault = 1
None = 0,
Default = 1
};
enum EType
enum class EType
{
TypePrimitive = 0,
TypeArray = 1
Primitive = 0,
Array = 1
};
struct SAllocInfo
{