changeset 6120:f62b2e76dd80 v7.4.398

updated for version 7.4.398 Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration.
author Bram Moolenaar <bram@vim.org>
date Thu, 07 Aug 2014 13:55:10 +0200
parents 2a798dca16bf
children 913d16b4904c
files src/gui_dwrite.cpp src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui_dwrite.cpp
+++ b/src/gui_dwrite.cpp
@@ -377,7 +377,7 @@ public:
     }
 
 private:
-    unsigned long cRefCount_;
+    long cRefCount_;
     IDWriteBitmapRenderTarget* pRenderTarget_;
     IDWriteRenderingParams* pRenderingParams_;
 };
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    398,
+/**/
     397,
 /**/
     396,