[cparser] accept anonymous typedefs again albeit with a warning
It appears that old parser accepted something like ``` typedef enum foo { A, B, C }; ``` previous commit forgot to reset the Lexerhack's typedef status after such a declaration, resulting in considering the _next_ declaration a typedef as well, provoking completely inaccurate errors afterwards. We now accept such programs, but, like clang, we emit a warning about such typedef.
Please register or sign in to comment