mirror of https://github.com/AxioDL/tinyxml2.git
Add 'const' on XMLDocument::DeepCopy. This make us copy const
XMLDocument being copied to another document.
This commit is contained in:
parent
4bbf74205c
commit
87cd4e0582
|
@ -2054,7 +2054,7 @@ void XMLDocument::Clear()
|
|||
}
|
||||
|
||||
|
||||
void XMLDocument::DeepCopy(XMLDocument* target)
|
||||
void XMLDocument::DeepCopy(XMLDocument* target) const
|
||||
{
|
||||
TIXMLASSERT(target);
|
||||
if (target == this) {
|
||||
|
|
|
@ -1826,7 +1826,7 @@ public:
|
|||
|
||||
NOTE: that the 'target' must be non-null.
|
||||
*/
|
||||
void DeepCopy(XMLDocument* target);
|
||||
void DeepCopy(XMLDocument* target) const;
|
||||
|
||||
// internal
|
||||
char* Identify( char* p, XMLNode** node );
|
||||
|
|
Loading…
Reference in New Issue