class browser-names displayed wrongly
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
if there is a c++ comment(//xxx) that follows a class or
struct name immediately without spaces, the class
browser concatenates the last 1 or 2 characters in the
comment to the class/struct name.
example:
struct foo//ls
{
}
this is displayed as "fools" in the class browser
class foo//l
{
}
displayed as "fool"