SimpleWeatherService #include <array>

not <vector> as that is what is actually used.
Fixes build failure
InfiniTime/src/components/ble/SimpleWeatherService.h:86:18: error: field ‘location’ has incomplete type ‘Pinetime::Controllers::SimpleWeatherService::Location’ {aka ‘std::array<char, 33>’
This commit is contained in:
Lionel Elie Mamane 2024-10-26 11:57:47 +02:00 committed by FintasticMan
parent f1651c8000
commit cfaad261dc

View File

@ -19,7 +19,7 @@
#include <cstdint>
#include <string>
#include <vector>
#include <array>
#include <memory>
#define min // workaround: nimble's min/max macros conflict with libstdc++