changeset 8395:8137d5b642f3 v7.4.1489

commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 4 22:57:20 2016 +0100 patch 7.4.1489 Problem: "inline" is not supported by old MSVC. Solution: use "__inline". (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Fri, 04 Mar 2016 23:00:04 +0100
parents a547a31981c5
children 8c7a66667857
files src/macros.h src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/src/version.c
+++ b/src/version.c
@@ -744,6 +744,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1489,
+/**/
     1488,
 /**/
     1487,