proxy lazy resolve progress

This commit is contained in:
Sascha Kühl
2025-08-22 16:13:00 +02:00
parent 839a214cef
commit 71cb1a25db
5 changed files with 57 additions and 39 deletions
+2 -2
View File
@@ -62,10 +62,10 @@ size_t identifier::null_pk::hash() const
}
identifier::identifier()
: id_(std::make_shared<null_pk>()) {}
: id_(std::make_shared<null_pk>()) {}
identifier::identifier(const identifier &x)
: id_(x.id_->copy()) {}
: id_(x.id_->copy()) {}
identifier &identifier::operator=(const identifier &x) {
if (this == &x) {