From 2192852510d27cf099425b39b95dd9690adb503b Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Thu, 9 Dec 2021 17:09:07 +0100 Subject: [PATCH] Fix crash when passing function with lambda to the Job System --- Source/Engine/Threading/JobSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Threading/JobSystem.cpp b/Source/Engine/Threading/JobSystem.cpp index 4898014f9..3f4e7e297 100644 --- a/Source/Engine/Threading/JobSystem.cpp +++ b/Source/Engine/Threading/JobSystem.cpp @@ -58,7 +58,7 @@ struct JobData template<> struct TIsPODType { - enum { Value = true }; + enum { Value = false }; }; class JobSystemThread : public IRunnable