Re: [Doxygen-users] Bug in XML output
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2002-03-13 18:07:03
|
On Wed, Mar 13, 2002 at 12:17:08AM +0100, Freudenberg, Thomas wrote: > Hi. > > There is a bug in the listofallmembers section in the XML output, when documenting 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="classmyclass" prot="public" virt="non-virtual"><scope>myclass</scope><name>operator<<</name></member> > [...] > > As you see, the name tag is corrupted by the < characters. The detail information is correct, here the '<' are replaced by < Yes, more strings should have been filtered using convertToXML(). I'll fix this in the next release. Regards, Dimitri |