I’ve gotten this error a number of times, but it doesn’t make sense to me because the code functions as it should.
WARNING: x_range: perf-time code in global space, ignored
and the offending code… (the whole array is not included)
gSfms_ranges[][] = fillarray(\
x_range(-1, 1, 0, 1, 0.001),\
x_range(0, 10000, 1, 1, 1),\
x_range(1, 10000, 2, 1, 1),\
x_range(0, 5000, 0, 1, 1),\
x_range(0, 1, 0, 1, 0.001),\
x_range(0, 1000, 0, 1, 1)\
...
)
and x_range is defined as…
opcode x_range, S, iiiii
iMin, iMax, iVal, iSkew, iIncr xin
xout sprintf("range(%f, %f, %f, %f, %f)", iMin, iMax, iVal, iSkew, iIncr)
endop
Is it safe to ignore this particular instance of this error?