From c6ff3c018b14c4156ea8e4f1130f26c41ac39f9b Mon Sep 17 00:00:00 2001 From: Qi Ma Date: Fri, 22 Aug 2014 14:35:04 +0100 Subject: [PATCH] minor style correction --- src/maidsafe/rudp/core/dispatcher.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/maidsafe/rudp/core/dispatcher.cc b/src/maidsafe/rudp/core/dispatcher.cc index 9bf1a541..1bfbc27e 100644 --- a/src/maidsafe/rudp/core/dispatcher.cc +++ b/src/maidsafe/rudp/core/dispatcher.cc @@ -85,8 +85,8 @@ void Dispatcher::HandleReceiveFrom(const asio::const_buffer& data, << " , " << DebugId(socket->PeerNodeId()); socket->HandleReceiveFrom(data, endpoint); } catch (const std::exception& e) { - // TODO - This is only a temp fix. The socket shall be held as shared_ptr across - // owners to be thread safe avoid causing bad_alloc issue + // TODO(Team) - This is only a temp fix. The socket shall be held as shared_ptr + // among owners to be thread safe avoid causing bad_alloc issue LOG(kError) << boost::diagnostic_information(e); } }