Skip to content

Commit 7bfece4

Browse files
committed
updated for version 7.4.081
Problem: Wrong logic when ANALYZE is "yes". Solution: Use or instead of and. (KF Leong)
1 parent 4d13223 commit 7bfece4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Make_mvc.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ CFLAGS=$(CFLAGS) $(WP64CHECK)
488488
!endif
489489

490490
# Static code analysis generally available starting with VS2012
491-
!if ("$(ANALYZE)" == "yes") && ("$(MSVCVER)" == "11.0") && ("$(MSVCVER)" == "12.0")
491+
!if ("$(ANALYZE)" == "yes") && (("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0"))
492492
CFLAGS=$(CFLAGS) /analyze
493493
!endif
494494

src/version.c

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

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
81,
741743
/**/
742744
80,
743745
/**/

0 commit comments

Comments
 (0)