Mark const, inline, volatile checks as unprefixable

This commit is contained in:
Boris Kolpackov 2022-09-04 13:00:11 +02:00
parent 04b6d354b1
commit a9944ed041
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
// const
// const!
/* This check is unusual in that for a positive answer (the compiler supports
const) we undefine const to allow the compiler to recognize it as a keyword

View File

@ -1,4 +1,4 @@
// inline
// inline!
/* This check is unusual in that for a positive answer (the compiler supports
inline) we undefine inline to allow the compiler to recognize it as a

View File

@ -1,4 +1,4 @@
// volatile
// volatile!
/* This check is unusual in that for a positive answer (the compiler supports
volatile) we undefine volatile to allow the compiler to recognize it as a