From 65783462824c091a418b6edae4c4189b3dcedeec Mon Sep 17 00:00:00 2001 From: superp00t Date: Mon, 14 Aug 2023 17:11:05 -0400 Subject: [PATCH] fix(debug): add empty class Blizzard::Debug::ErrorStackRecord --- bc/Debug.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bc/Debug.hpp b/bc/Debug.hpp index 321f3bd..3e8d079 100644 --- a/bc/Debug.hpp +++ b/bc/Debug.hpp @@ -25,6 +25,12 @@ namespace Blizzard { namespace Debug { +// Types + +class ErrorStackRecord { + public: +}; + // Functions void Assert(const char* a1, const char* a2, uint32_t a3); void SetAssertHandler(Blizzard::System_Debug::AssertCallback callback);