From 31a8d358835366310b6a6c2aa781c6697206d198 Mon Sep 17 00:00:00 2001 From: Cuyler36 Date: Mon, 4 Dec 2023 17:08:55 -0500 Subject: [PATCH] change missing 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 e6d24273..2c363ab0 100644 --- a/include/JSystem/JGadget/linklist.h +++ b/include/JSystem/JGadget/linklist.h @@ -208,7 +208,7 @@ public: T& operator*() const { T* p = this->operator->(); #line 541 - JGADGET_ASSERT(p!=0); + JUT_ASSERT(p!=0); return *p; }