Skip to content

Commit

Permalink
improved readability timetable
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenhagelgans committed Oct 27, 2023
1 parent 1b26c45 commit 3658ab3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/deps
/.idea
/.clang-tidy
/.vscode
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
},
{
"name": "linux-sanitizer",
"displayName": "Linux Debug",
"displayName": "Linux Sanitizer",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/sanitizer",
"cacheVariables": {
Expand Down
4 changes: 2 additions & 2 deletions include/nigiri/timetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ struct timetable {
mutable_fws_multimap<location_idx_t, location_idx_t> children_;
mutable_fws_multimap<location_idx_t, footpath> preprocessing_footpaths_out_;
mutable_fws_multimap<location_idx_t, footpath> preprocessing_footpaths_in_;
array<vecvec<location_idx_t, footpath>, kMaxProfiles> footpaths_out_,
footpaths_in_;
array<vecvec<location_idx_t, footpath>, kMaxProfiles> footpaths_out_;
array<vecvec<location_idx_t, footpath>, kMaxProfiles> footpaths_in_;
vector_map<timezone_idx_t, timezone> timezones_;
} locations_;

Expand Down

0 comments on commit 3658ab3

Please sign in to comment.