1
0
mirror of https://github.com/Ed94/gencpp.git synced 2025-07-12 16:38:59 -07:00
Files
base
docs
gen_c_library
gen_segmented
gen_singleheader
gen_unreal_engine
scripts
helpers
.clang-format
Readme.md
build.ci.ps1
build.ps1
clean.ps1
genccp.natstepfilter
gencpp.natvis
package_release.ps1
refactor.ps1
refactor_unreal.ps1
uncrustify.cfg
test
.editorconfig
.gitignore
LICENSE
Readme.md
gencpp/scripts/genccp.natstepfilter

31 lines
779 B
XML

<?xml version="1.0" encoding="utf-8"?>
<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
<Function>
<Name>gen::.*::raw</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::Code.*::debug_str</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::Code.*::duplicate</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::Code.*::has_entries</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::Code.*::is_equal</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::Code.*::to_strbuilder</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>gen::StrBuilder::operator .*</Name>
</Function>
</StepFilter>