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 d4633d8 commit 84afacc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gtfs/test/test_gtfsReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ TEST(GTFS, TestFunction) {

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

0 comments on commit 84afacc

Please sign in to comment.