[GRASS5] C++ style inline comments...

I've been perusing grass51 sources and noticed many instances where
The C++ style inline comments "//" are used. While it's legal in
C99, there are still C compilers that'll choke on these. Please
don't use them. Either use /* ... */ or #if 0 ... #endif.

--
Eric G. Miller <egm2@jps.net>

On Thu, Jul 04, 2002 at 01:53:38AM -0700, Eric G. Miller wrote:

I've been perusing grass51 sources and noticed many instances where
The C++ style inline comments "//" are used. While it's legal in
C99, there are still C compilers that'll choke on these. Please
don't use them. Either use /* ... */ or #if 0 ... #endif.

I support this: Please stick to ANSI C comments.