Fixed compiler warnings

This commit is contained in:
adrian17
2013-09-29 18:39:12 +02:00
parent a2fa1569f0
commit 6f76e02f4a
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -367,7 +367,7 @@ bool initPostfixExpression(const char* infix, IExpressionFunctions* funcs, Postf
bool parsePostfixExpression(PostfixExpression& exp, IExpressionFunctions* funcs, uint32& dest)
{
int num = 0;
size_t num = 0;
uint32 opcode;
std::vector<uint32> valueStack;
unsigned int arg[5];