diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-21 00:19:15 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-21 00:32:34 +0100 |
commit | 226352afcbbc5af703f168c1290e07add26b44fe (patch) | |
tree | fd5d38d80685f4ac5db9f48df35965767d841b38 /src/nvim/strings.c | |
parent | c6a039d087ca2b333d1d3a2604d675e0010f7063 (diff) | |
download | rneovim-226352afcbbc5af703f168c1290e07add26b44fe.tar.gz rneovim-226352afcbbc5af703f168c1290e07add26b44fe.tar.bz2 rneovim-226352afcbbc5af703f168c1290e07add26b44fe.zip |
build: Fix -Wconversion warnings for fpclassify et al
closes #8274
The parent commit tries a different approach, but that fails on Apple
Clang version:
Apple LLVM version 10.0.0 (clang-1000.11.45.5)
Target: x86_64-apple-darwin17.7.0
which somehow compiles the check_c_source_compiles() check, but then
complains during later compilation that __fpclassify is not defined
(regardless of "#include <math.h>").
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 533784767c..96a8dfd295 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -27,6 +27,7 @@ #include "nvim/func_attr.h" #include "nvim/getchar.h" #include "nvim/mark.h" +#include "nvim/math.h" #include "nvim/mbyte.h" #include "nvim/memfile.h" #include "nvim/memline.h" |