mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 02:42:58 +01:00
extra ';' inside a struct or union -- clang warnings fixed
This commit is contained in:
parent
240fc33f65
commit
751b60a18d
@ -379,7 +379,7 @@ typedef struct XMLDLLENTRY XMLNode
|
|||||||
XMLNode(const XMLNode &A); ///< to allow shallow/fast copy:
|
XMLNode(const XMLNode &A); ///< to allow shallow/fast copy:
|
||||||
XMLNode& operator=( 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 XMLNode emptyXMLNode;
|
||||||
static XMLClear emptyXMLClear;
|
static XMLClear emptyXMLClear;
|
||||||
static XMLAttribute emptyXMLAttribute;
|
static XMLAttribute emptyXMLAttribute;
|
||||||
|
@ -28,7 +28,7 @@ namespace zmq
|
|||||||
|
|
||||||
struct i_poll_events
|
struct i_poll_events
|
||||||
{
|
{
|
||||||
virtual ~i_poll_events () {};
|
virtual ~i_poll_events () {}
|
||||||
|
|
||||||
// Called by I/O thread when file descriptor is ready for reading.
|
// Called by I/O thread when file descriptor is ready for reading.
|
||||||
virtual void in_event () = 0;
|
virtual void in_event () = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user