diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/erebos/identity.h | 6 | ||||
-rw-r--r-- | include/erebos/storage.h | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/include/erebos/identity.h b/include/erebos/identity.h index 4fdddab..9ed170a 100644 --- a/include/erebos/identity.h +++ b/include/erebos/identity.h @@ -29,7 +29,7 @@ public: friend class Identity; struct Priv; const std::shared_ptr<Priv> p; - Builder(Priv * p): p(p) {} + Builder(Priv * p); }; static Builder create(const Storage &); @@ -38,8 +38,8 @@ public: private: struct Priv; const std::shared_ptr<const Priv> p; - Identity(const Priv * p): p(p) {} - Identity(std::shared_ptr<const Priv> && p): p(std::move(p)) {} + Identity(const Priv * p); + Identity(std::shared_ptr<const Priv> && p); }; } diff --git a/include/erebos/storage.h b/include/erebos/storage.h index d23022f..5812783 100644 --- a/include/erebos/storage.h +++ b/include/erebos/storage.h @@ -33,7 +33,7 @@ public: typedef erebos::PartialRef Ref; PartialStorage(const PartialStorage &) = default; - PartialStorage & operator=(const PartialStorage &) = default; + PartialStorage & operator=(const PartialStorage &) = delete; virtual ~PartialStorage() = default; bool operator==(const PartialStorage &) const; @@ -62,7 +62,7 @@ public: Storage(const std::filesystem::path &); Storage(const Storage &) = default; - Storage & operator=(const Storage &) = default; + Storage & operator=(const Storage &) = delete; Storage deriveEphemeralStorage() const; PartialStorage derivePartialStorage() const; @@ -117,7 +117,7 @@ class PartialRef { public: PartialRef(const PartialRef &) = default; - PartialRef & operator=(const PartialRef &) = default; + PartialRef & operator=(const PartialRef &) = delete; static PartialRef create(PartialStorage, const Digest &); @@ -140,7 +140,7 @@ class Ref : public PartialRef { public: Ref(const Ref &) = default; - Ref & operator=(const Ref &) = default; + Ref & operator=(const Ref &) = delete; static std::optional<Ref> create(Storage, const Digest &); |