'*/' found outside of comment
The closing-comment delimiter is not preceded by an opening-comment delimiter. The compiler assumes a space between the asterisk (*) and the forward slash (/).
Example
int */*comment*/ptr; // Ambiguous first delimiter causes warning
Possible cause
Possible solution
#if 0 int my_variable; /* Declaration currently not needed */ #endif