Re: [Doxygen-users] Doxygen-1.2.8 in CVS
Brought to you by:
dimitri
From: Luigi B. <lui...@ri...> - 2001-06-05 08:16:44
|
At 05:11 PM 6/4/01 +0200, Dimitri van Heesch wrote: >Hi, > >Another official release is out. Here is what has changed since last update: >-------------------------------------------------------------------------- >+ BUG: Fixed a problem with argument matching for arguments that contained > classes imported via a using declaration. >-------------------------------------------------------------------------- Dimitri, the above is not entirely true. The following code still triggers the problem. Thanks anyway, Luigi ---- test.hpp ---- namespace A { namespace B { class B1 {}; } namespace C { class C1 { public: C1(B::B1 b); }; class C2 { public: C2(const B::B1& b); }; } } ---- test.cpp ---- #include "test.hpp" namespace A { using B::B1; namespace C { C1::C1(B1 b) {} } } -------- |