diff --git a/include/pocketpy/bindings.h b/include/pocketpy/bindings.h index aa1ef5d9..e357d7f5 100644 --- a/include/pocketpy/bindings.h +++ b/include/pocketpy/bindings.h @@ -4,14 +4,6 @@ namespace pkpy{ -template -struct OpaquePointer{ - T* ptr; - OpaquePointer(T* ptr): ptr(ptr){} - - T* operator->(){ return ptr; } -}; - struct NativeProxyFuncCBase { virtual PyObject* operator()(VM* vm, ArgsView args) = 0; };