summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/msgpack/unpack.h4
-rwxr-xr-xpython/setup.py1
2 files changed, 2 insertions, 3 deletions
diff --git a/python/msgpack/unpack.h b/python/msgpack/unpack.h
index dd23130..40058d0 100644
--- a/python/msgpack/unpack.h
+++ b/python/msgpack/unpack.h
@@ -19,8 +19,8 @@
#define MSGPACK_MAX_STACK_SIZE (1024)
#include "unpack_define.h"
-struct unpack_user {
-};
+typedef struct unpack_user {
+} unpack_user;
#define msgpack_unpack_struct(name) \
diff --git a/python/setup.py b/python/setup.py
index e0e0ac2..faadb33 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -10,7 +10,6 @@ version = '0.0.1dev'
PACKAGE_ROOT = os.getcwdu()
INCLUDE_PATH = os.path.join(PACKAGE_ROOT, 'include')
msgpack_mod = Extension('msgpack._msgpack',
- language="c++",
sources=['msgpack/_msgpack.pyx'],
include_dirs=[INCLUDE_PATH])