Merge branch 'develop' of https://github.com/DennisOSRM/Project-OSRM into develop

This commit is contained in:
Dennis Luxen 2013-08-08 14:18:13 +02:00
commit 0eeb94b24c

View File

@ -36,7 +36,8 @@ public:
IniFile(const char * configFile) {
std::ifstream config( configFile );
if(!config) {
throw OSRMException("[config] .ini not found");
std::string str = "[config] " + std::string(configFile) + " not found";
throw OSRMException(str.c_str());
}
std::string line;