From 8a46452a700fa5a8d6fc3bd9308bf483cd715de1 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 8 Aug 2013 09:19:36 -0400 Subject: Move template parameter in Thread to a more logical scope location. --- node/UdpSocket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'node/UdpSocket.cpp') diff --git a/node/UdpSocket.cpp b/node/UdpSocket.cpp index 12a0a989..d1eb87d6 100644 --- a/node/UdpSocket.cpp +++ b/node/UdpSocket.cpp @@ -120,7 +120,7 @@ UdpSocket::UdpSocket( } } - _thread = Thread::start(this); + _thread = Thread::start(this); } UdpSocket::~UdpSocket() @@ -131,7 +131,7 @@ UdpSocket::~UdpSocket() ::shutdown(s,SHUT_RDWR); ::close(s); } - Thread::join(_thread); + Thread::join(_thread); } bool UdpSocket::send(const InetAddress &to,const void *data,unsigned int len,int hopLimit) -- cgit v1.2.3