diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2021-11-03 22:02:30 (GMT) |
|---|---|---|
| committer | Reinhold Gschweicher <pyro4hell@gmail.com> | 2021-11-15 21:02:49 (GMT) |
| commit | f2918709d92dd49e7e1fffe22be04fc2b47f928b (patch) | |
| tree | 1b95b5150ef23b1ea5a83d3432386f40e1ae8de2 /src/displayapp | |
| parent | ac7b2da611fa5ef4cc989a9feb027f66c0ebfc6c (diff) | |
Add missing standard includes
Diffstat (limited to 'src/displayapp')
| -rw-r--r-- | src/displayapp/Messages.h | 1 | ||||
| -rw-r--r-- | src/displayapp/screens/BatteryIcon.h | 1 | ||||
| -rw-r--r-- | src/displayapp/screens/InfiniPaint.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/displayapp/Messages.h b/src/displayapp/Messages.h index ab0a060..29e09eb 100644 --- a/src/displayapp/Messages.h +++ b/src/displayapp/Messages.h @@ -1,4 +1,5 @@ #pragma once +#include <cstdint> namespace Pinetime { namespace Applications { namespace Display { diff --git a/src/displayapp/screens/BatteryIcon.h b/src/displayapp/screens/BatteryIcon.h index b370b33..bec2e4e 100644 --- a/src/displayapp/screens/BatteryIcon.h +++ b/src/displayapp/screens/BatteryIcon.h @@ -1,4 +1,5 @@ #pragma once +#include <cstdint> namespace Pinetime { namespace Applications { diff --git a/src/displayapp/screens/InfiniPaint.h b/src/displayapp/screens/InfiniPaint.h index 322ce75..bc0bca2 100644 --- a/src/displayapp/screens/InfiniPaint.h +++ b/src/displayapp/screens/InfiniPaint.h @@ -2,6 +2,7 @@ #include <lvgl/lvgl.h> #include <cstdint> +#include <algorithm> // std::fill #include "displayapp/screens/Screen.h" namespace Pinetime { |
