commit | c78dc01bfd8e066db267ce3e74e8e41dcc4b96d7 | [log] [tgz] |
---|---|---|
author | Lee Thomason <leethomason@gmail.com> | Tue Jun 12 13:12:15 2012 -0700 |
committer | Lee Thomason <leethomason@gmail.com> | Tue Jun 12 13:12:15 2012 -0700 |
tree | 474572c05a880d3924b102a011f98f9774a51359 | |
parent | 78d450b54ea775925f9e59ee86daac7261dc5343 [diff] [blame] |
removed extra and incorrect 'const'
diff --git a/tinyxml2.h b/tinyxml2.h index 3dbaaa4..e43b5be 100644 --- a/tinyxml2.h +++ b/tinyxml2.h
@@ -1378,7 +1378,7 @@ of the XML file in memory. (Note the size returned includes the terminating null.) */ - const int CStrSize()const{ return buffer.Size(); } + int CStrSize() const { return buffer.Size(); } private: void SealElement();