From 052c5a8d377e5de520f83f291d2a60648d46f405 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 3 Apr 2024 18:58:35 +0200 Subject: [PATCH] Core: remove extraneous define No longer needed, moved to dbg.h in commit ab0f925205f1b6ccf71cc1efa0ef7298d4493fe6. --- src/core/assert.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/assert.h b/src/core/assert.h index e4c2e88f..50ce39ae 100644 --- a/src/core/assert.h +++ b/src/core/assert.h @@ -11,7 +11,4 @@ //#else # define Assert(condition, ...) assert(condition) # define AssertFatalMsg Assert - -// TODO: this needs to go to dbg.h -# define AssertMsg(condition, ...) assert(condition) //#endif