summaryrefslogtreecommitdiff
path: root/src/net/connection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/connection.hpp')
-rw-r--r--src/net/connection.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net/connection.hpp b/src/net/connection.hpp
index 0cdb1fc0..ba36b2d3 100644
--- a/src/net/connection.hpp
+++ b/src/net/connection.hpp
@@ -37,7 +37,7 @@ class MessageOut;
class Connection
{
public:
- Connection(): mRemote(NULL) {}
+ Connection();
virtual ~Connection() {}
/**
@@ -59,7 +59,8 @@ class Connection
/**
* Sends a message to the remote host.
*/
- void send(MessageOut const &msg, bool reliable = true, unsigned channel = 0);
+ void send(MessageOut const &msg, bool reliable = true,
+ unsigned channel = 0);
/**
* Dispatches received messages to processMessage.