summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2014-08-07 13:55:10 +0200
committerBram Moolenaar <bram@vim.org>2014-08-07 13:55:10 +0200
commit4935b30a58443b294611b622432e06a966336b72 (patch)
tree3c8137b87d8976826ee32064580a414a7cdc1876
parent1f3c00b36bddbfbd5a0d19f14b0203e128426b53 (diff)
downloadvim-4935b30a58443b294611b622432e06a966336b72.tar.gz
updated for version 7.4.398v7.4.398v7-4-398
Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration.
-rw-r--r--src/gui_dwrite.cpp2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_dwrite.cpp b/src/gui_dwrite.cpp
index cf83c050..d4c43a37 100644
--- 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_;
};
diff --git a/src/version.c b/src/version.c
index 878ace89..19183fda 100644
--- 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,