MCPcopy Create free account
hub / github.com/beefytech/Beef / FindTemplateStr

Method FindTemplateStr

IDEHelper/DbgModule.cpp:3127–3141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3125}
3126
3127void DbgModule::FindTemplateStr(const char*& name, int& templateNameIdx)
3128{
3129 if (templateNameIdx == 0)
3130 {
3131 for (int i = 0; name[i] != 0; i++)
3132 {
3133 if (name[i] == '<')
3134 {
3135 templateNameIdx = i;
3136 return;
3137 }
3138 }
3139 templateNameIdx = -1;
3140 }
3141}
3142
3143void DbgModule::TempRemoveTemplateStr(const char*& name, int& templateNameIdx)
3144{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected