diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-04-29 14:46:44 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-03 10:04:49 -0400 |
commit | cb7fb8c008e3da673014952b960bf4604af7b210 (patch) | |
tree | f0e95663bb19be82fdaece06194e33cdc0c2d646 /src/types.h | |
parent | 37935130f9c967f58de9900f7d86042116db9fd5 (diff) | |
download | rneovim-cb7fb8c008e3da673014952b960bf4604af7b210.tar.gz rneovim-cb7fb8c008e3da673014952b960bf4604af7b210.tar.bz2 rneovim-cb7fb8c008e3da673014952b960bf4604af7b210.zip |
Remove project int types: Case short_u: Replace with uint16_t.
- Replace short_u with uint16_t (same size, should give no problems).
- When possible, remove explicit downcasts so that they are found when
flag -Wconversion enabled.
- Remove short_u typedef.
Requested in #459.
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h index e2b9f15ae7..a038e2d5fc 100644 --- a/src/types.h +++ b/src/types.h @@ -15,7 +15,6 @@ * already defined, so we use char_u to avoid trouble. */ typedef unsigned char char_u; -typedef unsigned short short_u; typedef unsigned int int_u; #endif /* NEOVIM_TYPES_H */ |