From d504bc95c6f00f4ef5d8a8f4437fbdfb9f8ee988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Sun, 9 Mar 2025 12:23:56 +0100 Subject: [PATCH] fix compilation + tests --- src/config.cc | 1 - src/import.cc | 4 ++-- test/config_test.cc | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/config.cc b/src/config.cc index 4d6821d66..c1f88813c 100644 --- a/src/config.cc +++ b/src/config.cc @@ -388,7 +388,6 @@ config config::read_legacy(fs::path const& p) { .first_day_ = cfg.first_day_, .num_days_ = cfg.num_days_, .with_shapes_ = cfg.shapes_, - .ignore_errors_ = true, .adjust_footpaths_ = cfg.adjust_footpaths_, .merge_dupes_intra_src_ = cfg.merge_dupes_intra_src_, .merge_dupes_inter_src_ = cfg.merge_dupes_inter_src_, diff --git a/src/import.cc b/src/import.cc index d5461ece7..1d110e844 100644 --- a/src/import.cc +++ b/src/import.cc @@ -149,8 +149,8 @@ data import(config const& c, fs::path const& data_path, bool const write) { } h = cista::build_hash( - h, t.first_day_, t.num_days_, t.with_shapes_, t.ignore_errors_, - t.adjust_footpaths_, t.merge_dupes_intra_src_, t.merge_dupes_inter_src_, + h, t.first_day_, t.num_days_, t.with_shapes_, t.adjust_footpaths_, + t.merge_dupes_intra_src_, t.merge_dupes_inter_src_, t.link_stop_distance_, t.update_interval_, t.incremental_rt_update_, t.max_footpath_length_, t.default_timezone_, t.assistance_times_); } diff --git a/test/config_test.cc b/test/config_test.cc index 23c4db34e..097a57385 100644 --- a/test/config_test.cc +++ b/test/config_test.cc @@ -43,7 +43,6 @@ osm: europe-latest.osm.pbf num_days: 2 railviz: true with_shapes: true - ignore_errors: false adjust_footpaths: true merge_dupes_intra_src: false merge_dupes_inter_src: false