WIL headers and C++ static analysis don't always get along (#4918)

* WIL headers and C++ static analysis don't always get along

* Accidentally removed a header
This commit is contained in:
Larry Osterman 2023-08-29 13:41:52 -07:00 committed by GitHub
parent 468742224b
commit 1177548540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,8 +21,14 @@
#if defined(AZ_PLATFORM_WINDOWS)
#include <Windows.h>
#pragma warning(push)
#pragma warning(disable : 6553)
#pragma warning(disable : 6001) // Using uninitialized memory 'pNode'.
#pragma warning(disable : 6387) // An argument in result_macros.h may be '0', for the function
// 'GetProcAddress'.
#include <wil/resource.h>
#include <wil/result.h>
#pragma warning(pop)
#else
#include <openssl/bio.h>
#include <openssl/evp.h>