Use _WIN32 instead of _MSC_VER

Summary: This way it works better with MinGW.

Subscribers: mstorsjo, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D67887

llvm-svn: 372493
This commit is contained in:
Haibo Huang 2019-09-22 01:21:34 +00:00
parent c2ca003baf
commit 5c82608d20
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@
#include "llvm/ADT/StringRef.h"
#ifdef _MSC_VER
#ifdef _WIN32
#include "lldb/Host/windows/windows.h"
#endif