Skip to content

Commit

Permalink
STYLE: Fix XML namespace of natstepfilter file (Visual Studio Debugger)
Browse files Browse the repository at this point in the history
According to  Learn / Visual Studio / Debugging, section "Customize C++ stepping
behavior independent of Just My Code settings"
(https://learn.microsoft.com/en-us/visualstudio/debugger/just-my-code?view=vs-2022#BKMK_CPP_Customize_stepping_behavior)
the name of the XML namespace specified by the `xmlns` attribute in a
natstepfilter file starts with "http:" (not "https:"). While "https:" might work
in this particular case, it appears preferable to use the officially documented
XML namespace name.

Reverts the change of this particular file from pull request #3428
commit 9cd0f20 "ENH: Use https instead of http
when https works", May 18, 2022.
  • Loading branch information
N-Dekker authored and dzenanz committed Nov 3, 2023
1 parent dccdf4b commit 7f3f616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/Debugger/default.natstepfilter
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copy into C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Packages\Debugger\Visualizers\default.natstepfilter -->
<StepFilter xmlns="https://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
<Function><Name>__security_check_cookie</Name><Action>NoStepInto</Action></Function>
<Function><Name>__abi_winrt_.*</Name><Action>NoStepInto</Action></Function>
<Function><Name>_ObjectStublessClient.*</Name><Action>NoStepInto</Action></Function>
Expand Down

0 comments on commit 7f3f616

Please sign in to comment.