diff options
author | Ihor Antonov <ngortheone@users.noreply.github.com> | 2019-07-17 19:20:59 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-18 01:20:59 +0200 |
commit | 8499e18615f3a29a24deed78d12a6862995e829c (patch) | |
tree | 24a4a97068cfa2850f0b730dee5dbe745895e0f7 /src/nvim/eval/typval_encode.c.h | |
parent | 452ec4ed31d5d9c9ab4af9d8e686182ae11cef0c (diff) | |
download | rneovim-8499e18615f3a29a24deed78d12a6862995e829c.tar.gz rneovim-8499e18615f3a29a24deed78d12a6862995e829c.tar.bz2 rneovim-8499e18615f3a29a24deed78d12a6862995e829c.zip |
PVS/V1037: suppress warning #10528
Despite the PVS warning, we do not want to conflate these
cases, they are semantically different.
Diffstat (limited to 'src/nvim/eval/typval_encode.c.h')
-rw-r--r-- | src/nvim/eval/typval_encode.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval_encode.c.h b/src/nvim/eval/typval_encode.c.h index 623bdfc93b..289c3ee99c 100644 --- a/src/nvim/eval/typval_encode.c.h +++ b/src/nvim/eval/typval_encode.c.h @@ -382,7 +382,7 @@ static int _TYPVAL_ENCODE_CONVERT_ONE_VALUE( case VAR_SPECIAL: { switch (tv->vval.v_special) { case kSpecialVarNull: { - TYPVAL_ENCODE_CONV_NIL(tv); + TYPVAL_ENCODE_CONV_NIL(tv); // -V1037 break; } case kSpecialVarTrue: |