Skip to content

Commit 82a569f

Browse files
hvladasfernandes
authored andcommitted
Fixed build with MSVC 17.1
Assume _MSC_VER will be increased to be >= 2000 when\if VC CRT library get new version number in suffix.
1 parent a3313c3 commit 82a569f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/os/win32/mod_loader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class ContextActivator
9898
"msvcr110.dll";
9999
#elif _MSC_VER == 1800
100100
"msvcr120.dll";
101-
#elif _MSC_VER >= 1900 && _MSC_VER <= 1930
101+
#elif _MSC_VER >= 1900 && _MSC_VER < 2000
102102
"vcruntime140.dll";
103103
#else
104104
"";

0 commit comments

Comments
 (0)