remove unneeded member

This commit is contained in:
Dennis Luxen 2013-10-09 17:34:48 +02:00
parent 29e6b85f79
commit 6a900ed6e7
2 changed files with 1 additions and 4 deletions

View File

@ -29,9 +29,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "OSRM.h"
#include <boost/foreach.hpp>
OSRM::OSRM(const char * server_ini_path, const bool use_shared_memory) :
use_shared_memory(use_shared_memory)
{
OSRM::OSRM(const char * server_ini_path, const bool use_shared_memory) {
if( !testDataFile(server_ini_path) ){
std::string error_message(server_ini_path);

View File

@ -73,7 +73,6 @@ private:
BaseDataFacade<QueryEdge::EdgeData> * query_data_facade;
PluginMap plugin_map;
const bool use_shared_memory;
};
#endif //OSRM_H