diff options
author | INADA Naoki <inada-n@klab.com> | 2013-02-27 20:37:07 +0900 |
---|---|---|
committer | INADA Naoki <inada-n@klab.com> | 2013-02-27 20:37:07 +0900 |
commit | c91131f49f47b2af0349c1807d1c0f183d2b99b3 (patch) | |
tree | 45283ef2a3f7c614d693953140c9504589e07111 /msgpack/pack.h | |
parent | 944b41e82609a0b6a711870f8045d79d401e7bbf (diff) | |
download | msgpack-python-c91131f49f47b2af0349c1807d1c0f183d2b99b3.tar.gz |
remove msgpack_pack* macros
Diffstat (limited to 'msgpack/pack.h')
-rw-r--r-- | msgpack/pack.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/msgpack/pack.h b/msgpack/pack.h index bb939d9..59764d9 100644 --- a/msgpack/pack.h +++ b/msgpack/pack.h @@ -90,14 +90,6 @@ static inline int msgpack_pack_write(msgpack_packer* pk, const char *data, size_ return 0; } -#define msgpack_pack_inline_func(name) \ - static inline int msgpack_pack ## name - -#define msgpack_pack_inline_func_cint(name) \ - static inline int msgpack_pack ## name - -#define msgpack_pack_user msgpack_packer* - #define msgpack_pack_append_buffer(user, buf, len) \ return msgpack_pack_write(user, (const char*)buf, len) |