MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / string>

Method string>

collaboration.cpp:2218–2227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2216
2217template <>
2218std::string AnalysisMergeConflict::GetPathItem<std::string>(const std::string& path)
2219{
2220 char* val = BNAnalysisMergeConflictGetPathItemString(m_object, path.c_str());
2221 if (val == nullptr)
2222 throw SyncException(fmt::format("Failed to find merge conflict path item \"{}\"", path));
2223
2224 std::string strVal = val;
2225 BNFreeString(val);
2226 return strVal;
2227}
2228
2229
2230template <>

Callers

nothing calls this directly

Calls 2

SyncExceptionClass · 0.85
c_strMethod · 0.80

Tested by

no test coverage detected