change missing assert

This commit is contained in:
Cuyler36
2023-12-04 17:08:55 -05:00
parent 84f5445c66
commit 31a8d35883
+1 -1
View File
@@ -208,7 +208,7 @@ public:
T& operator*() const {
T* p = this->operator->();
#line 541
JGADGET_ASSERT(p!=0);
JUT_ASSERT(p!=0);
return *p;
}