diff options
author | bunnei <bunneidev@gmail.com> | 2016-11-15 20:07:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 20:07:23 -0500 |
commit | fb13bfe693e9536df700b675fef3affe09622fdd (patch) | |
tree | 133bc7a610f8ae94a5381f8c8aaba6a6050d7ac1 /src/core/gdbstub/gdbstub.cpp | |
parent | 5a31552764dc8970253e642f4b829a8b785375c6 (diff) | |
parent | c3ea6f4ddb4aeed9663b5039e9ab11a7fef7c395 (diff) |
Merge pull request #2172 from jroweboy/fix-mingw
Fix mingw compilation support
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index ceb993ea15..aea43e92ba 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -14,7 +14,7 @@ #include <numeric> #include <fcntl.h> -#ifdef _MSC_VER +#ifdef _WIN32 #include <WinSock2.h> #include <common/x64/abi.h> #include <io.h> |