From d33b970c3f74636e33f6d33b46ac707c617ab118 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Wed, 7 Jun 2023 22:00:55 +0000 Subject: 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 Change-Id: Ia2a80751d5281cc6f27e194a1e849de082a39038 --- src/hvac-can-helper.hpp | 1 + src/hvac-led-helper.hpp | 1 + 2 files changed, 2 insertions(+) (limited to 'src') 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 #include #include 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 #include #include #include -- cgit