diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-09 08:59:48 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-12 13:25:28 -0300 |
commit | 2792a0e33c0845fdd5b1b752d99ee573f6534256 (patch) | |
tree | 6b7fd940dd8a93f2957ecc11c99f64db8662c398 /src/nvim/os/msgpack_rpc_helpers.h | |
parent | 38dcfb60627cbdfa2eaf5d0d991c872c85868f22 (diff) | |
download | rneovim-2792a0e33c0845fdd5b1b752d99ee573f6534256.tar.gz rneovim-2792a0e33c0845fdd5b1b752d99ee573f6534256.tar.bz2 rneovim-2792a0e33c0845fdd5b1b752d99ee573f6534256.zip |
api/msgpack-rpc: Remove Position type, using arrays instead.
Diffstat (limited to 'src/nvim/os/msgpack_rpc_helpers.h')
-rw-r--r-- | src/nvim/os/msgpack_rpc_helpers.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/os/msgpack_rpc_helpers.h b/src/nvim/os/msgpack_rpc_helpers.h index 77e3d2637e..0eb2d5c77a 100644 --- a/src/nvim/os/msgpack_rpc_helpers.h +++ b/src/nvim/os/msgpack_rpc_helpers.h @@ -24,8 +24,6 @@ bool msgpack_rpc_to_integer(msgpack_object *obj, Integer *arg) FUNC_ATTR_NONNULL_ALL; bool msgpack_rpc_to_float(msgpack_object *obj, Float *arg) FUNC_ATTR_NONNULL_ALL; -bool msgpack_rpc_to_position(msgpack_object *obj, Position *arg) - FUNC_ATTR_NONNULL_ALL; bool msgpack_rpc_to_string(msgpack_object *obj, String *arg) FUNC_ATTR_NONNULL_ALL; bool msgpack_rpc_to_buffer(msgpack_object *obj, Buffer *arg) @@ -53,8 +51,6 @@ void msgpack_rpc_from_integer(Integer result, msgpack_packer *res) FUNC_ATTR_NONNULL_ARG(2); void msgpack_rpc_from_float(Float result, msgpack_packer *res) FUNC_ATTR_NONNULL_ARG(2); -void msgpack_rpc_from_position(Position result, msgpack_packer *res) - FUNC_ATTR_NONNULL_ARG(2); void msgpack_rpc_from_string(String result, msgpack_packer *res) FUNC_ATTR_NONNULL_ARG(2); void msgpack_rpc_from_buffer(Buffer result, msgpack_packer *res) |