Skip to content

Commit

Permalink
Merge pull request #84 from davido/msvc_15.0_detection
Browse files Browse the repository at this point in the history
Fix MSVC 15.0 detection (aka VS 2017)
  • Loading branch information
hvlad committed Feb 15, 2017
2 parents f3cc290 + f9bbff5 commit 3bac2b4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/common/os/win32/mod_loader.cpp
Expand Up @@ -103,6 +103,8 @@ class ContextActivator
"msvcr120.dll",
#elif _MSC_VER == 1900
"vcruntime140.dll",
#elif _MSC_VER == 1910
"vcruntime140.dll",
#else
#error Specify CRT DLL name here !
#endif
Expand Down

0 comments on commit 3bac2b4

Please sign in to comment.