trns1997 commented on code in PR #2225:
URL: https://github.com/apache/nuttx-apps/pull/2225#discussion_r1421692969
##########
interpreters/bas/bas_token.h:
##########
@@ -100,7 +100,7 @@ struct Identifier
{
struct Symbol *sym;
enum ValueType defaultType;
- char name[2/* ... */];
+ char name[0];
Review Comment:
Maybe encapsulate both in an `#ifdef __STDC` then c89 standard and `char
name[2]` else `char name[0]`. I am not sure it will work, but if it does it
should unblock the ci until we find a better long-term solution.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]