Re: [Doxygen-users] Doxygen-1.2.8 in CVS
Brought to you by:
dimitri
From: Luigi B. <lui...@ri...> - 2001-06-05 10:33:00
|
At 05:11 PM 6/4/01 +0200, Dimitri van Heesch wrote: >+ BUG: Fixed a problem with argument matching for arguments that contained > classes imported via a using declaration. Another possibly related glitch: a "no matching class member found" warning is issued for any method of a class defined inside an anonymous namespace inside another namespace, as in the following code. Thanks again, Luigi ---- test.cpp ---- namespace A { namespace { class A { public: A() {} void g() {} }; } } -------- |