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

This commit is contained in:
Piotr Trojanek 2010-06-09 17:06:32 +02:00 committed by Martin Sustrik
parent 240fc33f65
commit 751b60a18d
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;