SphereCommunity
What is this Problem ? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: What is this Problem ? (/Thread-What-is-this-Problem)



What is this Problem ? - MirroR - 04-05-2015 10:07 AM

Sphere Build 2247

Undefined symbol '' ['+ (1))']
Undefined symbol '1' ['+1)']
Undefined symbol '' ['+ (1))']

var.xxx +=1 or var.xxx ++


RE: What is this Problem ? - XuN - 04-06-2015 04:09 AM

Code:
XuN    r2235    27.03.15

...
Changed the 'Undefined symbol '' ' output format, now also prints what was the problem exactly in some situations. IE: if (<local.hello==1) // missing '>' will print 21:15:ERROR:(s_add.scp,21)Undefined symbol '' ['<local.hello==)']
...

So that means that you are receiving the old 'Undefined symbol '' ' error.

In this case its telling you what are you doing wrong [+1] <--- do you see the problem? 'no value + 1' so your problem is to use var.xxx +=1 when var.xxx does not exists. Use var0 instead.