Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.1.4
-
None
Description
The function
XSTypeDefinition::getNamespace()
should have a const qualifier, just like
XSTypeDefinition::getName()
has.
$ cd xerces-c-3.1.1/src/xercesc/framework/psvi/
$ grep "XMLCh* getName" XSTypeDefinition.hpp
virtual const XMLCh* getName() const = 0;
virtual const XMLCh* getNamespace() = 0;