diff --git a/Redcraft.Utility/Source/Public/Miscellaneous/ProgramSupport.h b/Redcraft.Utility/Source/Public/Miscellaneous/ProgramSupport.h index 68d6e24..772166f 100644 --- a/Redcraft.Utility/Source/Public/Miscellaneous/ProgramSupport.h +++ b/Redcraft.Utility/Source/Public/Miscellaneous/ProgramSupport.h @@ -1,5 +1,6 @@ #pragma once +#include "AssertionMacros.h" #include "CoreTypes.h" #include @@ -84,6 +85,10 @@ NORETURN FORCEINLINE void Unreachable() { NAMESPACE_STD::unreachable(); } +# else + { + Abort(); + } # endif }