diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-04 22:57:20 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-04 22:57:20 +0100 |
commit | 0c171716c0430458741fbf18a6fd4baea4c0390b (patch) | |
tree | 783cd469436f0720ddc90633138cfa4ff8d83ccb /src/macros.h | |
parent | 179f1b9a7ddf3624daf6380c3dad740e0a1ba361 (diff) | |
download | vim-git-0c171716c0430458741fbf18a6fd4baea4c0390b.tar.gz |
patch 7.4.1489v7.4.1489
Problem: "inline" is not supported by old MSVC.
Solution: use "__inline". (Ken Takata)
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.h b/src/macros.h index 0f0a7d425..7b7b17d1a 100644 --- a/src/macros.h +++ b/src/macros.h @@ -331,7 +331,7 @@ # if defined(WIN32) # ifndef isnan # define isnan(x) _isnan(x) - static inline int isinf(double x) { return !_finite(x) && !_isnan(x); } + static __inline int isinf(double x) { return !_finite(x) && !_isnan(x); } # endif # else # ifndef HAVE_ISNAN |