mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-01 11:33:48 +00:00
Removed constexpr use to support VS2013
This commit is contained in:
parent
5d3426c861
commit
6bbb05e60e
4 changed files with 7 additions and 8 deletions
|
|
@ -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) { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue