Silence deprecation warning for GetVersionEx with clang-cl

llvm-svn: 346268
This commit is contained in:
Reid Kleckner 2018-11-06 21:40:32 +00:00
parent 73bf0af32f
commit 0d56edb9ab
1 changed files with 7 additions and 0 deletions

View File

@ -96,12 +96,19 @@ inline llvm::VersionTuple GetWindowsOSVersion() {
#pragma warning(push)
#pragma warning(disable : 4996)
#endif // _MSC_VER
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated"
#endif // __clang__
// Starting with Microsoft SDK for Windows 8.1, this function is deprecated
// in favor of the new Windows Version Helper APIs. Since we don't specify a
// minimum SDK version, it's easier to simply disable the warning rather than
// try to support both APIs.
if (GetVersionEx((LPOSVERSIONINFO)&info) == 0)
return llvm::VersionTuple();
#if defined(__clang__)
#pragma clang diagnostic pop
#endif // __clang__
#if defined(_MSC_VER)
#pragma warning(pop)
#endif // _MSC_VER