MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ~CZString

Method ~CZString

json/jsoncpp.cpp:2742–2750  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2740#endif
2741
2742Value::CZString::~CZString() {
2743 if (cstr_ && storage_.policy_ == duplicate) {
2744 releaseStringValue(const_cast<char*>(cstr_),
2745 storage_.length_ + 1u); // +1 for null terminating
2746 // character for sake of
2747 // completeness but not actually
2748 // necessary
2749 }
2750}
2751
2752void Value::CZString::swap(CZString& other) {
2753 std::swap(cstr_, other.cstr_);

Callers

nothing calls this directly

Calls 1

releaseStringValueFunction · 0.85

Tested by

no test coverage detected