Quellcode durchsuchen

Merge pull request #743 from deduktionstheorem/master

Issue 742: allow intermittent calls of XMLPrinter::ClearBuffer
Lee Thomason vor 6 Jahren
Ursprung
Commit
1675bec2f2
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      tinyxml2.h

+ 2 - 2
tinyxml2.h

@@ -2253,10 +2253,10 @@ public:
     	If in print to memory mode, reset the buffer to the
     	If in print to memory mode, reset the buffer to the
     	beginning.
     	beginning.
     */
     */
-    void ClearBuffer() {
+    void ClearBuffer( bool resetToFirstElement = true ) {
         _buffer.Clear();
         _buffer.Clear();
         _buffer.Push(0);
         _buffer.Push(0);
-		_firstElement = true;
+		_firstElement = resetToFirstElement;
     }
     }
 
 
 protected:
 protected: