From 19e8e51505c09ca265852fd0572ec21bf851b94d Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Sat, 14 Jun 2025 09:35:57 -0500 Subject: [PATCH] boost::irange with sys_days is not portable --- scwx-qt/source/scwx/qt/manager/text_event_manager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scwx-qt/source/scwx/qt/manager/text_event_manager.cpp b/scwx-qt/source/scwx/qt/manager/text_event_manager.cpp index 8aa4c611..d7759275 100644 --- a/scwx-qt/source/scwx/qt/manager/text_event_manager.cpp +++ b/scwx-qt/source/scwx/qt/manager/text_event_manager.cpp @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include @@ -488,7 +487,7 @@ void TextEventManager::Impl::LoadArchives( std::vector loadListEntries {}; - for (auto date : boost::irange(startDate, endDate)) + for (auto date = startDate; date < endDate; date += std::chrono::days {1}) { auto mapIt = unloadedProductMap_.find(date); if (mapIt == unloadedProductMap_.cend())