diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-16 18:53:02 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-16 19:18:54 +0300 |
commit | 33952a7661927f875ebf40a60e236831c789de58 (patch) | |
tree | ae81f62c8584d803df1ddf73c92238b68f1133e8 /src/nvim/eval/typval_encode.c.h | |
parent | 77a4f8f235901778d889aed7c708e1608eac25f6 (diff) | |
download | rneovim-33952a7661927f875ebf40a60e236831c789de58.tar.gz rneovim-33952a7661927f875ebf40a60e236831c789de58.tar.bz2 rneovim-33952a7661927f875ebf40a60e236831c789de58.zip |
*: Silence some false positives
Diffstat (limited to 'src/nvim/eval/typval_encode.c.h')
-rw-r--r-- | src/nvim/eval/typval_encode.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval/typval_encode.c.h b/src/nvim/eval/typval_encode.c.h index ad54eef4a0..3487880bd2 100644 --- a/src/nvim/eval/typval_encode.c.h +++ b/src/nvim/eval/typval_encode.c.h @@ -611,7 +611,7 @@ _convert_one_value_regular_dict: {} typval_encode_stop_converting_one_item: return OK; // Prevent “unused label” warnings. - goto typval_encode_stop_converting_one_item; + goto typval_encode_stop_converting_one_item; // -V779 } TYPVAL_ENCODE_SCOPE int _TYPVAL_ENCODE_ENCODE( @@ -814,6 +814,6 @@ encode_vim_to__error_ret: _mp_destroy(mpstack); return FAIL; // Prevent “unused label” warnings. - goto typval_encode_stop_converting_one_item; + goto typval_encode_stop_converting_one_item; // -V779 } #endif // NVIM_EVAL_TYPVAL_ENCODE_C_H |