From c99fc47107d2914f6bd20f980af2f1a872b2e6c8 Mon Sep 17 00:00:00 2001 From: Zhizhen Tang Date: Mon, 17 Apr 2023 09:33:23 +0800 Subject: [PATCH] For debug version Signed-off-by: Zhizhen Tang --- shared/source/helpers/debug_helpers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/shared/source/helpers/debug_helpers.cpp b/shared/source/helpers/debug_helpers.cpp index 30bcaee99eb96..c427c96b9b0ee 100644 --- a/shared/source/helpers/debug_helpers.cpp +++ b/shared/source/helpers/debug_helpers.cpp @@ -17,7 +17,6 @@ void debugBreak(int line, const char *file) { if (DebugManager.flags.EnableDebugBreak.get()) { printf("Assert was called at %d line in file:\n%s\n", line, file); fflush(stdout); - assert(false); } } void abortUnrecoverable(int line, const char *file) {