Merge pull request #187 from amai2012/master
Fix compiler warning: extra ';' after member function definition
diff --git a/tinyxml2.h b/tinyxml2.h
index 183f6dc..978ae20 100755
--- a/tinyxml2.h
+++ b/tinyxml2.h
@@ -2031,7 +2031,7 @@
}
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().