Click here to Skip to main content
15,887,135 members

Comments by MrRossi (Top 1 by date)

MrRossi 30-Aug-11 3:52am View    
Deleted
Nice (I have used a similar trick before)!

Beware if there are inline comments (e.g. in function parameters):

//*
int foo(char bar/*char parameter*/);
/*/
int foo(int bar/*int parameter*/);
//*/

does not compile (at least when using C++/CLI in VS 2005)

Further, I noticed in the past, that doxygen might be confused.