Skip to content

Commit cfaad26

Browse files
Lionel Elie MamaneFintasticMan
authored andcommitted
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>’
1 parent f1651c8 commit cfaad26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ble/SimpleWeatherService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include <cstdint>
2121
#include <string>
22-
#include <vector>
22+
#include <array>
2323
#include <memory>
2424

2525
#define min // workaround: nimble's min/max macros conflict with libstdc++

0 commit comments

Comments
 (0)