This commit is contained in:
blueloveTH 2023-09-29 20:09:41 +08:00
parent 071550fb90
commit 73062427d2

View File

@ -34,7 +34,6 @@ struct VoidP{
void* ptr; void* ptr;
VoidP(const void* ptr): ptr(const_cast<void*>(ptr)){} VoidP(const void* ptr): ptr(const_cast<void*>(ptr)){}
VoidP(void* ptr): ptr(ptr){}
bool operator==(const VoidP& other) const { bool operator==(const VoidP& other) const {
return ptr == other.ptr; return ptr == other.ptr;