Fixing several compiler warnings.

This commit is contained in:
lotodore
2013-09-16 23:11:16 +02:00
parent c6c044b784
commit 20eb7b94bd
7 changed files with 21 additions and 14 deletions
+1 -4
View File
@@ -36,12 +36,10 @@
#include <net/sendbuffer.h>
#include <cstdlib>
struct WebSocketData;
class WebSendBuffer : public SendBuffer
{
public:
WebSendBuffer(boost::shared_ptr<WebSocketData> webData);
WebSendBuffer();
virtual void SetCloseAfterSend();
@@ -52,7 +50,6 @@ public:
private:
bool closeAfterSend;
boost::shared_ptr<WebSocketData> m_webData;
};
#endif