From 06408d36cc73f6798f7abf2186b5b7a238a75f4b Mon Sep 17 00:00:00 2001 From: Cuyler36 Date: Mon, 4 Dec 2023 17:09:37 -0500 Subject: [PATCH] Fix other assert --- include/JSystem/JGadget/linklist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/JSystem/JGadget/linklist.h b/include/JSystem/JGadget/linklist.h index 2c363ab0..285989c1 100644 --- a/include/JSystem/JGadget/linklist.h +++ b/include/JSystem/JGadget/linklist.h @@ -237,7 +237,7 @@ public: const T& operator*() const { const T* p = this->operator->(); #line 586 - JGADGET_ASSERT(p!=0); + JUT_ASSERT(p!=0); return *p; }