...
| Code Block | ||||
|---|---|---|---|---|
| ||||
#include <cinttypes> // for std::int_fast16_t
void f(std::int_fast16_t val) {
enum { BUFSIZE = 80 };
// ...
} |
Exceptions
DCL32-CPP-EX1: For compatibility with other compiler vendors or language standard modes, it is acceptable to create a macro identifier the same as a reserved identifier so long as the behavior is idempotent, as in this example:
...