# HG changeset patch # User Bram Moolenaar # Date 1554996604 -7200 # Node ID b2ed528e85efdae57d2391877981c6c167e898ae # Parent a3281488cfcfb2cbfcdc74bac9b94d553207bcf6 patch 8.1.1152: compiler warning with VS2019 commit https://github.com/vim/vim/commit/7edf0baef4e11df982bd37356a4e4d28ff046c86 Author: Bram Moolenaar Date: Thu Apr 11 17:22:57 2019 +0200 patch 8.1.1152: compiler warning with VS2019 Problem: Compiler warning with VS2019. Solution: Specify different offset for "AMD64". (closes https://github.com/vim/vim/issues/4235) diff --git a/src/GvimExt/Makefile b/src/GvimExt/Makefile --- a/src/GvimExt/Makefile +++ b/src/GvimExt/Makefile @@ -58,7 +58,7 @@ SUBSYSTEM = console SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) !endif -!if "$(CPU)" == "ARM64" +!if "$(CPU)" == "AMD64" || "$(CPU)" == "ARM64" OFFSET = 0x11C000000 !else OFFSET = 0x1C000000 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1152, +/**/ 1151, /**/ 1150,