removed overhead of clear error
diff --git a/tinyxml2.h b/tinyxml2.h
index 003ef43..771332c 100755
--- a/tinyxml2.h
+++ b/tinyxml2.h
@@ -1873,9 +1873,8 @@
     */

     void DeleteNode( XMLNode* node );

 

-    void ClearError() {

-        SetError(XML_SUCCESS, 0, 0);

-    }

+    /// Clears the error flags.

+    void ClearError();

 

     /// Return true if there was an error parsing the document.

     bool Error() const {