commit | b36a3ebfa48a18eff75b9b1b0c27bb068d998237 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri May 26 15:03:00 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri May 26 15:03:03 2023 -0500 |
tree | c01ae6397be1746ac1ee21cc81795f56d9878b3d | |
parent | cce26eb063488a4fe3403e55979cac7f8f6a7547 [diff] [blame] |
fix GCC 13 issues GCC 13 removes `uint*_t` family of types from one of the common includes so we need to explicitly include cstdint. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I7224585f0421b729b8a6b703851f5a000ab2d900
diff --git a/msl_verify.hpp b/msl_verify.hpp index 3f6983e..af0c2a2 100644 --- a/msl_verify.hpp +++ b/msl_verify.hpp
@@ -1,5 +1,6 @@ #pragma once +#include <cstdint> #include <string> namespace minimum_ship_level