From b5d33f1d596273fbcc74f8c53064e04aeee04db1 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 15 Jul 2026 23:19:39 +0200 Subject: [PATCH] Get rid of deprecated warnings spam on ps4 --- Source/Engine/Core/Compiler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Engine/Core/Compiler.h b/Source/Engine/Core/Compiler.h index 4b1640ab0..6b9c7ba61 100644 --- a/Source/Engine/Core/Compiler.h +++ b/Source/Engine/Core/Compiler.h @@ -125,5 +125,7 @@ // Custom attribute for Clang on PS4 #if PLATFORM_PS4 #undef DLLEXPORT +#undef DEPRECATED #define DLLEXPORT __declspec(dllexport) +#define DEPRECATED(...) #endif