Skip to content

Commit 7edf0ba

Browse files
committed
patch 8.1.1152: compiler warning with VS2019
Problem: Compiler warning with VS2019. Solution: Specify different offset for "AMD64". (closes #4235)
1 parent 679beba commit 7edf0ba

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/GvimExt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ SUBSYSTEM = console
5858
SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
5959
!endif
6060

61-
!if "$(CPU)" == "ARM64"
61+
!if "$(CPU)" == "AMD64" || "$(CPU)" == "ARM64"
6262
OFFSET = 0x11C000000
6363
!else
6464
OFFSET = 0x1C000000

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,8 @@ static char *(features[]) =
771771

772772
static int included_patches[] =
773773
{ /* Add new patch number below this line */
774+
/**/
775+
1152,
774776
/**/
775777
1151,
776778
/**/

0 commit comments

Comments
 (0)