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
Having code like:
```
#include <stdio.h>
int main1(int argc, char **argv)
{
printf("before \n");
/*
printf("in \n");
// */
printf("last \n");
}
```
results in a warning like:
```
aa.cpp:11: warning: Reached end of file while still inside a (nested) comment. Nesting level 2 (probable line reference: 8, 6)
```
as doxygen supports the (non standard) nested comments, though here we have no nested comment as is well signaled by the `/` after the `*`.
The code is also valid Cpp code.
We now explicitly exclude code like `//*/` from being a start comment.
0 commit comments