Archive warning fixes for gcc

This commit is contained in:
Dan Paulat 2025-04-27 10:40:17 -05:00
parent 2f2516b998
commit 8cdd8526eb
3 changed files with 7 additions and 1 deletions

View file

@ -2,6 +2,7 @@
#include <chrono>
#include <memory>
#include <optional>
#include <string>
namespace scwx::awips

View file

@ -104,4 +104,8 @@ IemApiProvider::LoadTextProducts(const Range& textProducts)
return ProcessTextProductFiles(asyncResponses);
}
#ifdef kDateFormat
# undef kDateFormat
#endif
} // namespace scwx::provider

View file

@ -18,7 +18,8 @@ namespace scwx::provider
static const std::string logPrefix_ = "scwx::provider::iem_api_provider";
const auto IemApiProvider::logger_ = util::Logger::Create(logPrefix_);
const std::shared_ptr<spdlog::logger> IemApiProvider::logger_ =
util::Logger::Create(logPrefix_);
const std::string IemApiProvider::kBaseUrl_ =
"https://mesonet.agron.iastate.edu/api/1";