Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohoch committed Oct 25, 2024
1 parent fcc80d4 commit 291f171
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/motis/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,17 @@ struct config {
std::optional<timetable> timetable_{};

struct gbfs {
bool operator==(gbfs const&) const = default;

struct restrictions {
bool operator==(restrictions const&) const = default;
bool ride_start_allowed_{true};
bool ride_end_allowed_{true};
bool ride_through_allowed_{true};
};

struct feed {
bool operator==(feed const&) const = default;
std::string url_;
std::optional<headers_t> headers_{};
};
Expand Down

0 comments on commit 291f171

Please sign in to comment.