summaryrefslogtreecommitdiff
path: root/node/UdpSocket.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-08 09:19:36 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-08 09:19:36 -0400
commit8a46452a700fa5a8d6fc3bd9308bf483cd715de1 (patch)
treeef548e9fb3b2f715fed9f765120a4cc00c0a7abb /node/UdpSocket.hpp
parent20f8668c286b2991f5eb1984dde6a8a76434d12d (diff)
downloadinfinitytier-8a46452a700fa5a8d6fc3bd9308bf483cd715de1.tar.gz
infinitytier-8a46452a700fa5a8d6fc3bd9308bf483cd715de1.zip
Move template parameter in Thread to a more logical scope location.
Diffstat (limited to 'node/UdpSocket.hpp')
-rw-r--r--node/UdpSocket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/UdpSocket.hpp b/node/UdpSocket.hpp
index fcf13e24..c6200eac 100644
--- a/node/UdpSocket.hpp
+++ b/node/UdpSocket.hpp
@@ -94,7 +94,7 @@ public:
throw();
private:
- Thread<UdpSocket> _thread;
+ Thread _thread;
void (*_packetHandler)(UdpSocket *,void *,const InetAddress &,const void *,unsigned int);
void *_arg;
int _localPort;