summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-02-10 19:21:23 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-18 22:29:20 +0200
commit3398f701eeac63f3cfcf193f3e9c1ee2f06edb08 (patch)
tree69db1451cd0ca272cc40d7b8336d2b57db25645b
parentCommon/Tests: Clang Format. (diff)
downloadyuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar.gz
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar.bz2
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar.lz
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar.xz
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.tar.zst
yuzu-3398f701eeac63f3cfcf193f3e9c1ee2f06edb08.zip
Diffstat (limited to '')
-rw-r--r--src/common/fiber.cpp4
-rw-r--r--src/common/fiber.h4
2 files changed, 4 insertions, 4 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;
diff --git a/src/common/fiber.h b/src/common/fiber.h
index b530bf4d2..598fe7daa 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -10,7 +10,7 @@
#include "common/common_types.h"
#include "common/spin_lock.h"
-#ifndef _MSC_VER
+#if !defined(_WIN32) && !defined(WIN32)
namespace boost::context::detail {
struct transfer_t;
}
@@ -57,7 +57,7 @@ public:
private:
Fiber();
-#ifdef _MSC_VER
+#if defined(_WIN32) || defined(WIN32)
void start();
static void FiberStartFunc(void* fiber_parameter);
#else