03.11.2012, 21:18
dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level
You have define "string" like global variable and you do not have need for :
Same for line : 28;132;172;280;337;379
And for :
dutils.inc(20) : warning 201: redefinition of constant/macro (symbol "MAX_STRING")
In this line you redefine already defined constant/macro (symbol "MAX_STRING") and if this is not you intention
then look you may be use "=" instead "==".
And for:
Stack/heap size: 16384 bytes; estimated max. usage=4679 cells (18716 bytes)
You Stack/heap size: 16384 bytes is and you using (18716 bytes)
I hope this help.
You have define "string" like global variable and you do not have need for :
Quote:
new string[128];// in line 239 delete |
And for :
dutils.inc(20) : warning 201: redefinition of constant/macro (symbol "MAX_STRING")
In this line you redefine already defined constant/macro (symbol "MAX_STRING") and if this is not you intention
then look you may be use "=" instead "==".
And for:
Stack/heap size: 16384 bytes; estimated max. usage=4679 cells (18716 bytes)
You Stack/heap size: 16384 bytes is and you using (18716 bytes)
I hope this help.