[Analyzers][CPP] Turn on warning 26492 (#23492)

This commit is contained in:
sosssego
2023-02-08 11:54:16 +00:00
committed by GitHub
parent 9168f871af
commit 17475ec705
6 changed files with 15 additions and 6 deletions

View File

@@ -294,8 +294,9 @@ inline bool run_non_elevated(const std::wstring& file, const std::wstring& param
siex.StartupInfo.cb = sizeof(siex);
PROCESS_INFORMATION pi = { 0 };
auto succeeded = CreateProcessW(file.c_str(),
const_cast<LPWSTR>(executable_args.c_str()),
&executable_args[0],
nullptr,
nullptr,
FALSE,
@@ -395,8 +396,9 @@ inline bool run_same_elevation(const std::wstring& file, const std::wstring& par
STARTUPINFO si = { sizeof(STARTUPINFO) };
PROCESS_INFORMATION pi = { 0 };
auto succeeded = CreateProcessW(file.c_str(),
const_cast<LPWSTR>(executable_args.c_str()),
&executable_args[0],
nullptr,
nullptr,
FALSE,

View File

@@ -4,9 +4,10 @@
#include <Windows.h>
// disable warning 26471 - Don't use reinterpret_cast. A cast from void* can use static_cast
// disable warning 26492 - Don't use const_cast to cast away const
// Disable 26497 for winrt - This function function-name could be marked constexpr if compile-time evaluation is desired.
#pragma warning(push)
#pragma warning(disable : 26471 26497)
#pragma warning(disable : 26471 26492 26497)
#include <wil/resource.h>
#pragma warning(pop)