From d316202834a6c81fbc7535a62759c1a0a399cba8 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 28 Apr 2014 12:56:32 +0200 Subject: [PATCH] avoid private static function --- Include/osrm/Reply.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/osrm/Reply.h b/Include/osrm/Reply.h index 82f2d2f41..df199a2d3 100644 --- a/Include/osrm/Reply.h +++ b/Include/osrm/Reply.h @@ -64,7 +64,7 @@ public: Reply(); private: - static std::string ToString(Reply::status_type status); + std::string ToString(Reply::status_type status); boost::asio::const_buffer ToBuffer(Reply::status_type status); };