[Doxygen-users] Doxygen does not find member function
Brought to you by:
dimitri
|
From: Christoph B. <bar...@or...> - 2006-02-17 21:19:57
|
Hi,
I have a small example of several doxygen warnings in our code:
/home/ponto/dox/container.H:13: Warning: no matching class member found for
template < T, LL >
void Container< T, LL >::Memory::swap(Container< T, LL >::Container::Memory
&other)
Possible candidates:
void Container< T, LL >::Memory::swap(Memory &other)
The warning is produced by running doxygen on the following file:
template <typename T, typename LL>
class Container {
public:
class Memory {
public:
/** Swap Memory objects */
void swap(Memory & other);
};
};
template <typename T, typename LL>
void Container<T, LL>::Memory::swap( Container<T, LL>::Memory & other) {}
The Code works and produces no compiler warnings on several platforms. Is
there a way to resolve the problem with doxygen?
Greets
Christoph Bartoschek
|