From 73062427d2dd02ac8e2d737214c7bea703d11ae6 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 29 Sep 2023 20:09:41 +0800 Subject: [PATCH] ... --- include/pocketpy/cffi.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/pocketpy/cffi.h b/include/pocketpy/cffi.h index ed4ad476..9fafb79f 100644 --- a/include/pocketpy/cffi.h +++ b/include/pocketpy/cffi.h @@ -34,7 +34,6 @@ struct VoidP{ void* ptr; VoidP(const void* ptr): ptr(const_cast(ptr)){} - VoidP(void* ptr): ptr(ptr){} bool operator==(const VoidP& other) const { return ptr == other.ptr;