Commit 751b60a1 authored by Piotr Trojanek's avatar Piotr Trojanek Committed by Martin Sustrik

extra ';' inside a struct or union -- clang warnings fixed

parent 240fc33f
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment