summaryrefslogtreecommitdiff
path: root/src/lib/json_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/json_server.h')
-rw-r--r--src/lib/json_server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/json_server.h b/src/lib/json_server.h
index f36e621f3..c97e496d1 100644
--- a/src/lib/json_server.h
+++ b/src/lib/json_server.h
@@ -27,6 +27,6 @@ public:
private:
void run (int port);
- void handle (boost::shared_ptr<boost::asio::ip::tcp::socket> socket);
- void request (std::string url, boost::shared_ptr<boost::asio::ip::tcp::socket> socket);
+ void handle (std::shared_ptr<boost::asio::ip::tcp::socket> socket);
+ void request (std::string url, std::shared_ptr<boost::asio::ip::tcp::socket> socket);
};