diff --git a/foreign/xmlParser/xmlParser.hpp b/foreign/xmlParser/xmlParser.hpp index 321eed35..dda41f37 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; diff --git a/src/i_poll_events.hpp b/src/i_poll_events.hpp index 8b85f7a1..6d474b2f 100644 --- a/src/i_poll_events.hpp +++ b/src/i_poll_events.hpp @@ -28,7 +28,7 @@ namespace zmq struct i_poll_events { - virtual ~i_poll_events () {}; + virtual ~i_poll_events () {} // Called by I/O thread when file descriptor is ready for reading. virtual void in_event () = 0;