Hello!
I am getting a weird error for an array with some values in. When I put 09, zero nine, into the array I get the error. This is the array:
int Array[32] {
00,04,05,00,-1,-3,00,04,-8,-7,12,00,-1,04,-3,05,
00,04,02,03,-1,-3,09,01,-8,-7,12,00,-1,04,-3,05
};
This is the error I am getting:
/Users/jakobskouborg/Documents/axoloti/build/xpatch.cpp:451:25: error: invalid digit "9" in octal constant
00,04,02,03,-1,-3,09,01,-8,-7,12,00,-1,04,-3,05
Why could that be? Am i breaking some coding convention by adding a zero, so there is always 2 digits in a number? Like 01, 02, -5, 06, etc.
All the other digits in the array works fine, only the 09 is an issue.
Thanks!