From fd224adb68295cb2b5a10f2946c026b4b31a75a7 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 6 Aug 2023 17:56:14 +0800 Subject: [PATCH] ... --- include/pocketpy/bindings.h | 8 -------- 1 file changed, 8 deletions(-) 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; };