mbeddr.core
mbeddr.core copied to clipboard
mbeddr doesn't allow single value array initialization
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)