diff options
author | Piotr Trojanek <piotr.trojanek@gmail.com> | 2010-06-09 17:06:32 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-06-09 17:06:32 +0200 |
commit | 751b60a18d028d9859394c7abe960cb1c42e605e (patch) | |
tree | 0f339a8e99172b1612965cbb4c95c1e4df400336 /foreign/xmlParser | |
parent | 240fc33f65c6cd9f1ed0a511daf4ad00ff37f163 (diff) |
extra ';' inside a struct or union -- clang warnings fixed
Diffstat (limited to 'foreign/xmlParser')
-rw-r--r-- | foreign/xmlParser/xmlParser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/foreign/xmlParser/xmlParser.hpp b/foreign/xmlParser/xmlParser.hpp index 321eed3..dda41f3 100644 --- a/foreign/xmlParser/xmlParser.hpp +++ b/foreign/xmlParser/xmlParser.hpp @@ -379,7 +379,7 @@ typedef struct XMLDLLENTRY XMLNode XMLNode(const XMLNode &A); ///< to allow shallow/fast copy: XMLNode& operator=( const XMLNode& A ); ///< to allow shallow/fast copy: - XMLNode(): d(NULL){}; + XMLNode(): d(NULL){} static XMLNode emptyXMLNode; static XMLClear emptyXMLClear; static XMLAttribute emptyXMLAttribute; |