1
0
Fork 0

DBG: removed some useless const

This commit is contained in:
mrexodia 2016-10-29 01:59:22 +02:00
parent a89c65fda7
commit 96eb2c9022
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
2 changed files with 2 additions and 2 deletions

View File

@ -495,7 +495,7 @@ static int mulhi(int x, int y)
#endif //_WIN64
template<typename T>
static bool operation(const ExpressionParser::Token::Type type, const T op1, const T op2, T & result, const bool signedcalc)
static bool operation(ExpressionParser::Token::Type type, T op1, T op2, T & result, bool signedcalc)
{
result = 0;
switch(type)

View File

@ -85,7 +85,7 @@ public:
Unspecified
};
Token(const String & data, const Type type)
Token(const String & data, Type type)
: mData(data),
mType(type)
{