diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-18 00:20:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-18 00:20:38 +0100 |
commit | 8f9fc1f692292efe63b9e71bb6f6340bccf2b37f (patch) | |
tree | caafab85917d2ce0de1289d67704648ee2345938 /src/nvim/globals.h | |
parent | 8093cbd8e8ca06ce5c9d8814fc6d94cb2304133a (diff) | |
parent | aa39fc56f68e2087a2327bcd03cc5f3d2dc9a696 (diff) | |
download | rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.tar.gz rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.tar.bz2 rneovim-8f9fc1f692292efe63b9e71bb6f6340bccf2b37f.zip |
Merge #9508 from justinmk/pvs-warnings
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 2550fb8163..cc39e2c112 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -1072,16 +1072,14 @@ EXTERN char_u e_cmdmap_key[] INIT(=N_( EXTERN char top_bot_msg[] INIT(= N_("search hit TOP, continuing at BOTTOM")); EXTERN char bot_top_msg[] INIT(= N_("search hit BOTTOM, continuing at TOP")); -/* For undo we need to know the lowest time possible. */ +// For undo we need to know the lowest time possible. EXTERN time_t starttime; EXTERN FILE *time_fd INIT(= NULL); /* where to write startup timing */ -/* - * Some compilers warn for not using a return value, but in some situations we - * can't do anything useful with the value. Assign to this variable to avoid - * the warning. - */ +// Some compilers warn for not using a return value, but in some situations we +// can't do anything useful with the value. Assign to this variable to avoid +// the warning. EXTERN int vim_ignored; // Start a msgpack-rpc channel over stdin/stdout. |