diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-10 14:21:23 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-18 16:29:20 -0400 |
commit | 3398f701eeac63f3cfcf193f3e9c1ee2f06edb08 (patch) | |
tree | 69db1451cd0ca272cc40d7b8336d2b57db25645b /src/common/fiber.cpp | |
parent | 1bd706344e2381e11245b2f0bdc291429e46c634 (diff) |
Common: Make MinGW build use Windows Fibers instead of fcontext_t
Diffstat (limited to 'src/common/fiber.cpp')
-rw-r--r-- | src/common/fiber.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index a46be73c1..050c93acb 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -4,7 +4,7 @@ #include "common/assert.h" #include "common/fiber.h" -#ifdef _MSC_VER +#if defined(_WIN32) || defined(WIN32) #include <windows.h> #else #include <boost/context/detail/fcontext.hpp> @@ -12,7 +12,7 @@ namespace Common { -#ifdef _MSC_VER +#if defined(_WIN32) || defined(WIN32) struct Fiber::FiberImpl { LPVOID handle = nullptr; |