forked from OSchip/llvm-project
Silence deprecation warning for GetVersionEx with clang-cl
llvm-svn: 346268
This commit is contained in:
parent
73bf0af32f
commit
0d56edb9ab
|
@ -96,12 +96,19 @@ inline llvm::VersionTuple GetWindowsOSVersion() {
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable : 4996)
|
#pragma warning(disable : 4996)
|
||||||
#endif // _MSC_VER
|
#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
|
// 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
|
// 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
|
// minimum SDK version, it's easier to simply disable the warning rather than
|
||||||
// try to support both APIs.
|
// try to support both APIs.
|
||||||
if (GetVersionEx((LPOSVERSIONINFO)&info) == 0)
|
if (GetVersionEx((LPOSVERSIONINFO)&info) == 0)
|
||||||
return llvm::VersionTuple();
|
return llvm::VersionTuple();
|
||||||
|
#if defined(__clang__)
|
||||||
|
#pragma clang diagnostic pop
|
||||||
|
#endif // __clang__
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
#endif // _MSC_VER
|
#endif // _MSC_VER
|
||||||
|
|
Loading…
Reference in New Issue