From dcadb11a2045416675c2c85c0fc3d7720d28a123 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 16 Sep 2024 13:45:37 +0200 Subject: [PATCH] Fix build --- Source/Engine/Core/LogContext.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Core/LogContext.h b/Source/Engine/Core/LogContext.h index fc7d68bd3..7a851a6c9 100644 --- a/Source/Engine/Core/LogContext.h +++ b/Source/Engine/Core/LogContext.h @@ -2,6 +2,7 @@ #pragma once +#include "Engine/Core/Log.h" #include "Engine/Core/Config.h" #include "Engine/Scripting/ScriptingType.h" @@ -57,7 +58,7 @@ API_CLASS(Static) class FLAXENGINE_API LogContext /// Prints the current log context to the log. Does nothing it /// /// The verbosity of the log. - API_FUNCTION() static void Print(enum class LogType verbosity); + API_FUNCTION() static void Print(LogType verbosity); }; ///