From 70a9f20ae11aee144bae229a81418cfaadf354f7 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sat, 1 Feb 2025 21:47:55 +1000 Subject: [PATCH] common: add missing include in common_types.h Adds missing header include in common_types.h. This header is needed for std::unique_ptr and other smart pointer types that may be used by code including this header. --- src/common/common_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/common_types.h b/src/common/common_types.h index ae04c4d60..99fff66be 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h @@ -30,6 +30,7 @@ #include #include +#include using u8 = std::uint8_t; ///< 8-bit unsigned byte using u16 = std::uint16_t; ///< 16-bit unsigned short