parser: Parse and reject GCC range initializers "[0 ... 9]".
[cparser] / entity_t.h
index 21c332f..11481fc 100644 (file)
@@ -284,7 +284,7 @@ union entity_t {
 
 static inline bool is_declaration(const entity_t *entity)
 {
-       switch(entity->kind) {
+       switch (entity->kind) {
        case DECLARATION_KIND_CASES:
                return true;
        default: