mbeddr.core icon indicating copy to clipboard operation
mbeddr.core copied to clipboard

mbeddr doesn't allow single value array initialization

Open enikao opened this issue 9 years ago • 2 comments

C allows something like

double d[100] = {0.0};

to initialize every member of d with value 0.0. mbeddr flags an error on this:

array size does not match (expected: 100 was: 1)

enikao avatar Feb 03 '16 13:02 enikao