diff options
author | Matt Kline <matt@bitbashing.io> | 2018-06-18 09:24:34 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-18 19:24:34 +0200 |
commit | 09cd4d0a4340b8ba731f9ba9b3a51a002e9da75f (patch) | |
tree | e54aa846ad6f2ac48a8d25003f789f7b0b733e8d /src/nvim/mbyte.h | |
parent | 66a39fce6c70222a7f4a2dbd223a6d0c3a4a5789 (diff) | |
download | rneovim-09cd4d0a4340b8ba731f9ba9b3a51a002e9da75f.tar.gz rneovim-09cd4d0a4340b8ba731f9ba9b3a51a002e9da75f.tar.bz2 rneovim-09cd4d0a4340b8ba731f9ba9b3a51a002e9da75f.zip |
use wchar_t instead of WCHAR #6998
wchar_t has better cross-platform support and seems to fix an issue
on MinGW when building with `-std=c99`.
Diffstat (limited to 'src/nvim/mbyte.h')
-rw-r--r-- | src/nvim/mbyte.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/mbyte.h b/src/nvim/mbyte.h index dd8e44b3f9..99aadcacad 100644 --- a/src/nvim/mbyte.h +++ b/src/nvim/mbyte.h @@ -7,8 +7,8 @@ #include "nvim/iconv.h" #include "nvim/func_attr.h" -#include "nvim/os/os_defs.h" // For WCHAR, indirect -#include "nvim/types.h" // for char_u +#include "nvim/os/os_defs.h" // For indirect +#include "nvim/types.h" // for char_u /* * Return byte length of character that starts with byte "b". |