Skip to content

Commit

Permalink
Fix SimpleClient
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarex committed Dec 15, 2015
1 parent f1091f9 commit 63a5932
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/osrm/osrm.hpp
Expand Up @@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include <memory>

class LibOSRMConfig;
struct LibOSRMConfig;
struct RouteParameters;

namespace osrm
Expand Down
4 changes: 2 additions & 2 deletions tools/simpleclient.cpp
Expand Up @@ -25,7 +25,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "../library/osrm.hpp"
#include "util/version.hpp"
#include "../util/json_renderer.hpp"
#include "../util/routed_options.hpp"
Expand All @@ -34,6 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <osrm/json_container.hpp>
#include <osrm/libosrm_config.hpp>
#include <osrm/route_parameters.hpp>
#include <osrm/osrm.hpp>

#include <string>

Expand All @@ -45,7 +45,7 @@ int main(int argc, const char *argv[])
std::string ip_address;
int ip_port, requested_thread_num, max_locations_map_matching;
bool trial_run = false;
libosrm_config lib_config;
LibOSRMConfig lib_config;
const unsigned init_result = GenerateServerProgramOptions(
argc, argv, lib_config.server_paths, ip_address, ip_port, requested_thread_num,
lib_config.use_shared_memory, trial_run, lib_config.max_locations_distance_table,
Expand Down

0 comments on commit 63a5932

Please sign in to comment.