From 88f16121cb7dd6908706a59f7bb2891204abaf4a Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 29 Sep 2023 20:20:53 +0800 Subject: [PATCH] ... --- include/pocketpy/cffi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pocketpy/cffi.h b/include/pocketpy/cffi.h index 0cbe409b..b4bc9dde 100644 --- a/include/pocketpy/cffi.h +++ b/include/pocketpy/cffi.h @@ -66,7 +66,7 @@ inline PyObject* py_var(VM* vm, const void* p){ return vm->heap.gcnew(PK_OBJ_GET(Type, type), val); \ } -// POINTER_VAR(char*, "char_p") +POINTER_VAR(char*, "char_p") // const char* is special, need to rethink about it POINTER_VAR(const unsigned char*, "uchar_p") POINTER_VAR(const short*, "short_p")