Sujet : Re: Block Comments Or Rest-Of-Line Comments?
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.cDate : 23. Mar 2024, 00:42:10
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <utl50i$3700q$7@dont-email.me>
References : 1 2 3 4 5
User-Agent : Pan/0.155 (Kherson; fc5a80b8)
On Fri, 22 Mar 2024 12:20:16 -0400, James Kuyper wrote:
... I have occasionally
used #ifdef with a macro name that I haven't #defined, and have no plans
to #define, but which describes the reason why I'm commenting this
section out.
I’ve seen that. E.g.
#ifdef USE_STUPID_CODE
... do things one way ...
#else
... do things the better way ...
#endif