From 3f4c4d675bc2b56910cd2cb504bf42b9d56f62f0 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 7 May 2014 17:06:28 +0200 Subject: [PATCH] reformat Server/APIGrammar according to guideline --- Server/Connection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Server/Connection.h b/Server/Connection.h index 1e484fd0e..acaf03d4d 100644 --- a/Server/Connection.h +++ b/Server/Connection.h @@ -48,14 +48,14 @@ namespace http { class RequestParser; /// Represents a single connection from a client. -class Connection : public boost::enable_shared_from_this, - private boost::noncopyable { +class Connection : public boost::enable_shared_from_this +{ public: explicit Connection( boost::asio::io_service& io_service, RequestHandler& handler ); - + Connection(const Connection &) = delete; ~Connection(); boost::asio::ip::tcp::socket& socket();