corrode icon indicating copy to clipboard operation
corrode copied to clipboard

Arrays without explicit size

Open waywardmonkeys opened this issue 7 years ago • 0 comments

In C, we have a bunch of things like:

const char *names[] = {
    "abc",
    "def",
    "ghi",
}

But corrode doesn't recognize this and I have to put [3] instead of [].

waywardmonkeys avatar Sep 21 '17 13:09 waywardmonkeys