[Doxygen-users] Bug in XML output
Brought to you by:
dimitri
|
From: Freudenberg, T. <tho...@cy...> - 2002-03-12 23:17:00
|
Hi.
There is a bug in the listofallmembers section in the XML output, when do=
cumenting a streaming operator. I.e. I have a following class:
class myclass
{
// ...
/** blabla */
friend std::istream & operator>>( std::istream & is, myclass & q );
}
XML output is something like
[...]
<member refid=3D"classmyclass" prot=3D"public" virt=3D"non-virtual"=
><scope>myclass</scope><name>operator<<</name></member>
[...]
As you see, the name tag is corrupted by the < characters. The detail inf=
ormation is correct, here the '<' are replaced by <
Regards
Thomas
|