From 61d955f3dec8ca9728b561bef07affe60d8b32c7 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 13 Nov 2013 18:42:57 -0500 Subject: [PATCH] move Reply into compile unit --- Library/OSRM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/OSRM.cpp b/Library/OSRM.cpp index e540f7e4f..2ffcee1a6 100644 --- a/Library/OSRM.cpp +++ b/Library/OSRM.cpp @@ -126,6 +126,6 @@ void OSRM::RunQuery(RouteParameters & route_parameters, http::Reply & reply) { } } } else { - reply = http::Reply::stockReply(http::Reply::badRequest); + reply = http::Reply::StockReply(http::Reply::badRequest); } }