From c78dc01bfd8e066db267ce3e74e8e41dcc4b96d7 Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Tue, 12 Jun 2012 13:12:15 -0700 Subject: [PATCH] removed extra and incorrect 'const' --- tinyxml2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index 3dbaaa4..e43b5be 100644 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -1378,7 +1378,7 @@ public: 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();