diff options
author | Charles Joachim <cacplate@gmail.com> | 2016-05-07 23:55:07 -0400 |
---|---|---|
committer | Charles Joachim <cacplate@gmail.com> | 2016-05-30 12:05:08 -0400 |
commit | c2a18216114bae75b6d6a2c7f1a68db04578abce (patch) | |
tree | 508f17ba674ed9be29975c0b880fbbcbe980cae5 /src/nvim/globals.h | |
parent | 748898b4dd992c5a5d15a0e1f9f047fc42ba4fd3 (diff) | |
download | rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.tar.gz rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.tar.bz2 rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.zip |
ops.c: enable -Wconversion warning
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index dafb75ca87..9cef1feb35 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -836,8 +836,8 @@ EXTERN int* (*iconv_errno)(void); EXTERN int State INIT(= NORMAL); /* This is the current state of the * command interpreter. */ -EXTERN int finish_op INIT(= FALSE); /* TRUE while an operator is pending */ -EXTERN long opcount INIT(= 0); /* count for pending operator */ +EXTERN bool finish_op INIT(= false); // true while an operator is pending +EXTERN long opcount INIT(= 0); // count for pending operator /* * ex mode (Q) state |