summaryrefslogtreecommitdiff
path: root/shared/tinyxml/tinystr.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/tinyxml/tinystr.h')
-rw-r--r--shared/tinyxml/tinystr.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/shared/tinyxml/tinystr.h b/shared/tinyxml/tinystr.h
index b11407a4..9555549f 100644
--- a/shared/tinyxml/tinystr.h
+++ b/shared/tinyxml/tinystr.h
@@ -1,6 +1,5 @@
/*
www.sourceforge.net/projects/tinyxml
-Original file by Yves Berquin.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
@@ -22,17 +21,6 @@ must not be misrepresented as being the original software.
distribution.
*/
-/*
- * THIS FILE WAS ALTERED BY Tyge Lovset, 7. April 2005.
- *
- * - completely rewritten. compact, clean, and fast implementation.
- * - sizeof(TiXmlString) = pointer size (4 bytes on 32-bit systems)
- * - fixed reserve() to work as per specification.
- * - fixed buggy compares operator==(), operator<(), and operator>()
- * - fixed operator+=() to take a const ref argument, following spec.
- * - added "copy" constructor with length, and most compare operators.
- * - added swap(), clear(), size(), capacity(), operator+().
- */
#ifndef TIXML_USE_STL
@@ -106,13 +94,11 @@ public :
quit();
}
- // = operator
TiXmlString& operator = (const char* copy)
{
return assign( copy, (size_type)strlen(copy));
}
- // = operator
TiXmlString& operator = (const TiXmlString& copy)
{
return assign(copy.start(), copy.length());
bgstack15