From 458fd9e7f2b05376b1a870bf49d92a442eda5c8c Mon Sep 17 00:00:00 2001 From: Erki Date: Fri, 15 Jul 2022 14:17:02 +0300 Subject: [PATCH] Utility: add missing include to enum helpers --- Utility/Inc/utility_enum_helpers.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utility/Inc/utility_enum_helpers.hpp b/Utility/Inc/utility_enum_helpers.hpp index 7ee6d8f..62d7e7a 100644 --- a/Utility/Inc/utility_enum_helpers.hpp +++ b/Utility/Inc/utility_enum_helpers.hpp @@ -5,6 +5,8 @@ #ifndef SKULLC_UTILITY_ENUM_HELPERS_HPP_ #define SKULLC_UTILITY_ENUM_HELPERS_HPP_ +#include + #define SKULLC_ENUM_DECLARE_BITFLAG_OPERATORS(E) \ inline E operator|(const E& lhs, const E& rhs) \ { \