Pass references instead of value types
This commit is contained in:
parent
d8c97da087
commit
df1f828488
@ -40,7 +40,7 @@ OSRM::OSRM(const char * server_ini_path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
OSRM::~OSRM() {
|
OSRM::~OSRM() {
|
||||||
BOOST_FOREACH(PluginMap::value_type plugin_pointer, pluginMap) {
|
BOOST_FOREACH(PluginMap::value_type & plugin_pointer, pluginMap) {
|
||||||
delete plugin_pointer.second;
|
delete plugin_pointer.second;
|
||||||
}
|
}
|
||||||
delete objects;
|
delete objects;
|
||||||
@ -52,7 +52,7 @@ void OSRM::RegisterPlugin(BasePlugin * plugin) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void OSRM::RunQuery(RouteParameters & route_parameters, http::Reply & reply) {
|
void OSRM::RunQuery(RouteParameters & route_parameters, http::Reply & reply) {
|
||||||
PluginMap::const_iterator iter = pluginMap.find(route_parameters.service);
|
const PluginMap::const_iterator & iter = pluginMap.find(route_parameters.service);
|
||||||
if(pluginMap.end() != iter) {
|
if(pluginMap.end() != iter) {
|
||||||
reply.status = http::Reply::ok;
|
reply.status = http::Reply::ok;
|
||||||
iter->second->HandleRequest(route_parameters, reply );
|
iter->second->HandleRequest(route_parameters, reply );
|
||||||
|
Loading…
Reference in New Issue
Block a user