Fix other assert

This commit is contained in:
Cuyler36
2023-12-04 17:09:37 -05:00
parent 31a8d35883
commit 06408d36cc
+1 -1
View File
@@ -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;
}