mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-29 22:30:04 +00:00
Archive warning fixes for gcc
This commit is contained in:
parent
2f2516b998
commit
8cdd8526eb
3 changed files with 7 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
||||
namespace scwx::awips
|
||||
|
|
|
|||
|
|
@ -104,4 +104,8 @@ IemApiProvider::LoadTextProducts(const Range& textProducts)
|
|||
return ProcessTextProductFiles(asyncResponses);
|
||||
}
|
||||
|
||||
#ifdef kDateFormat
|
||||
# undef kDateFormat
|
||||
#endif
|
||||
|
||||
} // namespace scwx::provider
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue