...
DCL51-CPP-EX1: For compatibility with other compiler vendors or language standard modes, it is acceptable to create a macro identifier that is thes ame the same as a reserved identifier so long as the behavior is equivalentis semantically identical, as in this example:
Code Block | ||||
---|---|---|---|---|
| ||||
// Sometimes generated by configuration tools such as autoconf #define const const // Allowed compilers with semantically equivalent extension behavior #define inline __inline |
...