Removed constexpr use to support VS2013

This commit is contained in:
Thomas "elfprince13" Dickerson 2017-01-10 23:20:48 -05:00
parent 5d3426c861
commit 6bbb05e60e
4 changed files with 7 additions and 8 deletions

View file

@ -97,7 +97,7 @@ public:
{
eCommandType type; // Command type
StringTableEntry name; // Command name
static constexpr U32 MAX_ARGS = 10;
static const U32 MAX_ARGS = 10;
String argv[MAX_ARGS]; // Command arguments
S32 argc; // Number of arguments
Command() : type(CmdInvalid), name(0), argc(0) { }