diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:42:56 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:43:00 +0900 |
commit | 54fae7ae44d06bd920816004a686c1e17751cb54 (patch) | |
tree | 3485945c492a0bc5f5d83faf374687cd1d66b7f9 /gi/pygi-cache.h | |
parent | d6533baedc708736d91c255cccc1b4507942ee85 (diff) | |
download | pygobject2-54fae7ae44d06bd920816004a686c1e17751cb54.tar.gz pygobject2-54fae7ae44d06bd920816004a686c1e17751cb54.tar.bz2 pygobject2-54fae7ae44d06bd920816004a686c1e17751cb54.zip |
Imported Upstream version 3.15.0
Change-Id: I02b859dff581f456d759a90a2aea3eeec391e2ff
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'gi/pygi-cache.h')
-rw-r--r-- | gi/pygi-cache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gi/pygi-cache.h b/gi/pygi-cache.h index 093dde2..0361f00 100644 --- a/gi/pygi-cache.h +++ b/gi/pygi-cache.h @@ -197,7 +197,7 @@ struct _PyGICallableCache GICallableInfo *callable_info); }; -typedef struct _PyGIFunctionCache { +struct _PyGIFunctionCache { PyGICallableCache callable_cache; /* An invoker with ffi_cif already setup */ @@ -207,13 +207,13 @@ typedef struct _PyGIFunctionCache { PyGIInvokeState *state, PyObject *py_args, PyObject *py_kwargs); -} PyGIFunctionCache; +} ; -typedef struct _PyGIVFuncCache { +struct _PyGIVFuncCache { PyGIFunctionWithInstanceCache fwi_cache; GIBaseInfo *info; -} PyGIVFuncCache; +}; gboolean |