commit | 0ceda043fa13a077e940ad15e6865e26e5e16e88 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Jul 12 15:42:39 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Jul 12 16:00:24 2023 -0500 |
tree | 79378de75196841478f939fcd083615cfca7b594 | |
parent | 7ba248ad685c8a2029f9cfdbae98d161e9664a3b [diff] |
add cstdint include The aspeed.hpp uses `uint*_t` types without the cstdint include, which fails on some compilers on some architectures. Add it. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ia692a9dc9bb4787ae1850690e7027643238152da
diff --git a/src/gpioplus/utility/aspeed.hpp b/src/gpioplus/utility/aspeed.hpp index d3acecc..7d0cb8e 100644 --- a/src/gpioplus/utility/aspeed.hpp +++ b/src/gpioplus/utility/aspeed.hpp
@@ -1,4 +1,5 @@ #pragma once +#include <cstdint> #include <stdexcept> #include <string_view>