mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 07:28:34 +00:00
build: enable MSVC level 3 warnings (#21934)
MSVC has 4 different warning levels: 1 (severe), 2 (significant), 3 (production quality) and 4 (informational). Enabling level 3 warnings mostly revealed conversion problems, similar to GCC/clang -Wconversion flag.
This commit is contained in:
@@ -22,6 +22,10 @@
|
||||
#include "nvim/ui.h"
|
||||
#include "nvim/ui_client.h"
|
||||
|
||||
#ifdef MSWIN
|
||||
# include "nvim/os/os_win_console.h"
|
||||
#endif
|
||||
|
||||
static TUIData *tui = NULL;
|
||||
static bool ui_client_is_remote = false;
|
||||
|
||||
@@ -31,7 +35,6 @@ static bool ui_client_is_remote = false;
|
||||
# include "ui_events_client.generated.h"
|
||||
#endif
|
||||
// uncrustify:on
|
||||
//
|
||||
|
||||
uint64_t ui_client_start_server(int argc, char **argv)
|
||||
{
|
||||
|
Reference in New Issue
Block a user