Преглед на файлове

Document consistency asserts

Dmitry-Me преди 10 години
родител
ревизия
66487eb8f9
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      tinyxml2.h

+ 4 - 0
tinyxml2.h

@@ -630,10 +630,12 @@ public:
 
     /// Get the XMLDocument that owns this XMLNode.
     const XMLDocument* GetDocument() const	{
+        TIXMLASSERT( _document );
         return _document;
     }
     /// Get the XMLDocument that owns this XMLNode.
     XMLDocument* GetDocument()				{
+        TIXMLASSERT( _document );
         return _document;
     }
 
@@ -1536,9 +1538,11 @@ public:
     ~XMLDocument();
 
     virtual XMLDocument* ToDocument()				{
+        TIXMLASSERT( this == _document );
         return this;
     }
     virtual const XMLDocument* ToDocument() const	{
+        TIXMLASSERT( this == _document );
         return this;
     }