Skip to content

Commit

Permalink
fix compilation + tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Mar 9, 2025
1 parent ad80ba8 commit d504bc9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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_,
Expand Down
4 changes: 2 additions & 2 deletions src/import.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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_);
}
Expand Down
1 change: 0 additions & 1 deletion test/config_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d504bc9

Please sign in to comment.