You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when I try to use the 'sexy' comment style on a piece of code like this
// My comment
some_code_here;
I end up with the following
/*
*// My comment
*some_code_here
*/
Which is not working, since *// closes the commented section. I was wondering if it's possible to insert a space after each * in the commented secion, so to avoid the formation of */ constructs, which for the compiler mean the end of the commented section.