[Doxygen-develop] class gets lost
Brought to you by:
dimitri
From: Berno L. <ber...@ep...> - 2001-10-29 07:08:56
|
Hello, the following java-example seems to be ignored by doxygen: package mypackage; public class MyClass { public String html =3D "\"/*"; } If you initialize the string with something other (e.g. delete the "*" or= the=20 '"'), doxygen works correctly. Wasn't easy the track that down in a SRC with lots of inner classes and=20 regular expressions :-) I couldn't reproduce that with a cpp file like the following, so it seems= to=20 be java specific. class MyClass { public: char* getHtml(); }; char *MyClass::getHtml() { char *html =3D "\"/*"; return html; } int main( int argc, char* argv[] ) { return 0; } --- Gru=DF Berno |