From d740b6404404be22f708f75fbdda6a5c0ae741f3 Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Tue, 20 May 2014 22:04:42 +0200 Subject: [PATCH] Fix compiler warning: extra ';' after member function definition --- tinyxml2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index 183f6dc..978ae20 100755 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -2031,7 +2031,7 @@ public: } protected: - virtual bool CompactMode( const XMLElement& ) { return _compactMode; }; + virtual bool CompactMode( const XMLElement& ) { return _compactMode; } /** Prints out the space before an element. You may override to change the space and tabs used. A PrintSpace() override should call Print().