diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-12 09:28:46 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:55 -0400 |
commit | b4ca3abc9f6676ea250e42c834716a5f66d8ec30 (patch) | |
tree | 5ed04f0ef5e6cb1d59e6d91df420413b791fd23d /src/nvim/eval.c | |
parent | ef5d9ccefedec12b8628d204a13506e86ddb469c (diff) | |
download | rneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.tar.gz rneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.tar.bz2 rneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.zip |
Remove FEAT_FLOAT
Support for floating point variables
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 87261d4368..db57f73a1f 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -12,6 +12,7 @@ #include <string.h> #include <stdlib.h> +#include <math.h> #include "nvim/vim.h" #include "nvim/eval.h" #include "nvim/buffer.h" @@ -69,10 +70,6 @@ #include "nvim/os/time.h" #include "nvim/os/channel.h" -#if defined(FEAT_FLOAT) -# include <math.h> -#endif - #define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */ #define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not |