diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2023-06-07 22:00:55 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@konsulko.com> | 2023-06-07 22:04:41 +0000 |
commit | d33b970c3f74636e33f6d33b46ac707c617ab118 (patch) | |
tree | 1bd427a4260d7bd0a5c90ce213384184f174031c /src | |
parent | 98445b49ecb0b97f1edee577ac6e78ed921fae7d (diff) |
hvac-*-helper: explicitly include cstdint header
Otherwise gcc13 errors out with
error: 'uint8_t' has not been declared
Bug-AGL: SPEC-4578
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Change-Id: Ia2a80751d5281cc6f27e194a1e849de082a39038
Diffstat (limited to 'src')
-rw-r--r-- | src/hvac-can-helper.hpp | 1 | ||||
-rw-r--r-- | src/hvac-led-helper.hpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/hvac-can-helper.hpp b/src/hvac-can-helper.hpp index 3005d6b..4175e6b 100644 --- a/src/hvac-can-helper.hpp +++ b/src/hvac-can-helper.hpp @@ -3,6 +3,7 @@ #ifndef _HVAC_CAN_HELPER_HPP #define _HVAC_CAN_HELPER_HPP +#include <cstdint> #include <string> #include <linux/can.h> diff --git a/src/hvac-led-helper.hpp b/src/hvac-led-helper.hpp index 8fe41f7..6f73aac 100644 --- a/src/hvac-led-helper.hpp +++ b/src/hvac-led-helper.hpp @@ -3,6 +3,7 @@ #ifndef _HVAC_LED_HELPER_HPP #define _HVAC_LED_HELPER_HPP +#include <cstdint> #include <string> #include <iostream> #include <fstream> |