Let's say I have the following code (in C ++, but this is probably not important for the question):
int main() {
....random code....
....random code....
return 0;
}
In eclipse, when I want to comment on all the code by putting / * and * / before and after the code, the comment will be interrupted * / at the end of “This is a comment” on line 3, so the rest of the code is left without comment.
....random code....
return 0;
}
*/
Does anyone know a way around this problem, or do I just need to deal with it or use // comments ...?
source
share