Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CppRuleSet.ruleset
Expand Up @@ -79,7 +79,7 @@
<Rule Id="C26485" Action="Hidden" />
<Rule Id="C26490" Action="Hidden" />
<Rule Id="C26491" Action="Hidden" />
<Rule Id="C26492" Action="Hidden" />
<Rule Id="C26492" Action="Error" />
<Rule Id="C26493" Action="Hidden" />
<Rule Id="C26494" Action="Hidden" />
<Rule Id="C26495" Action="Error" />
Expand Down
6 changes: 4 additions & 2 deletions src/common/utils/elevation.h
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion src/common/utils/exec.h
Expand Up @@ -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)

Expand Down
Expand Up @@ -247,6 +247,10 @@ struct VideoCaptureReceiverPin : winrt::implements<VideoCaptureReceiverPin, IPin

if (_captureInputPin)
{
// disable warning 26492 - Don't use const_cast to cast away const
// reset needs 'pmt' to be non-const, we can't easily change the query accept prototype
// because of the inheritance.
#pragma warning(suppress : 26492)
_inputCaptureMediaType.reset(const_cast<AM_MEDIA_TYPE*>(pmt));
}

Expand Down
3 changes: 2 additions & 1 deletion tools/WebcamReportTool/DirectShowUtils.h
Expand Up @@ -6,9 +6,10 @@
#include <dshow.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 on winrt
// 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/com.h>
#pragma warning(push)

Expand Down
3 changes: 2 additions & 1 deletion tools/WebcamReportTool/main.cpp
Expand Up @@ -6,9 +6,10 @@
#include <cguid.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/com.h>
#pragma warning(push)

Expand Down