nimish commented on code in PR #6482: URL: https://github.com/apache/incubator-nuttx/pull/6482#discussion_r906394980
########## include/nuttx/compiler.h: ########## @@ -61,6 +61,14 @@ # define CONFIG_C99_BOOL 1 #endif +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L +# define CONFIG_C11_BOOL 1 +#endif + +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201710L +# define CONFIG_C17_BOOL 1 Review Comment: This is for future compatibility, in conjunction with the other ones -- 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: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org