Skip to content

Commit

Permalink
ENH: add missing header includes for mac os
Browse files Browse the repository at this point in the history
  • Loading branch information
Brunner246 committed Jun 2, 2024
1 parent 2df34ca commit 07a2a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtfs/test/test_gtfsReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ TEST(GTFS, TestFunction) {

std::ranges::for_each(data.calendars, [&](const auto& calendar) {
LoggingPool::getLogger()->info("Service ID: {}", calendar.serviceId);
LoggingPool::getLogger()->info("Start Date: {}", fmt::format("{:%F}", calendar.startDate));
LoggingPool::getLogger()->info("End Date: {}", fmt::format("{:%F}", calendar.endDate));
LoggingPool::getLogger()->info("Start Date: {}-{}-{}", calendar.startDate.year(), calendar.startDate.month(), calendar.startDate.day());
LoggingPool::getLogger()->info("End Date: {}-{}-{}", calendar.endDate.year(), calendar.endDate.month(), calendar.endDate.day());
LoggingPool::getLogger()->info("Weekday Service: ");
for (const auto& [day, service] : calendar.weekdayService)
{
Expand Down

0 comments on commit 07a2a60

Please sign in to comment.