MCPcopy Create free account
hub / github.com/Kitware/CMake / Comments

Method Comments

Utilities/cmjsoncpp/src/lib_json/json_value.cpp:1377–1378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1375bool Value::isObject() const { return type() == objectValue; }
1376
1377Value::Comments::Comments(const Comments& that)
1378 : ptr_{cloneUnique(that.ptr_)} {}
1379
1380Value::Comments::Comments(Comments&& that) noexcept
1381 : ptr_{std::move(that.ptr_)} {}

Callers

nothing calls this directly

Calls 2

cloneUniqueFunction · 0.85
moveFunction · 0.85

Tested by

no test coverage detected