Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
2.1.0
-
None
-
Operating System: Windows NT/2K
Platform: PC
-
13641
Description
QName's copy constructor is implemented incorrectly:
QName(const QName* const qname);
should be
QName(const QName& qname);
instead. At the moment there's a compiler-generated
copy constructor that obviously doesn't do the right
thing.