diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2020-02-05 22:13:09 +0100 | 
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2020-02-05 22:13:09 +0100 | 
| commit | 69e4c826a34eb84c36bb07338a9a292a520f5970 (patch) | |
| tree | 99d00a446b36fcdaf27dc9f1ddb5fc7e9edf5e3c /src/storage.h | |
| parent | 495d2cb6b47b309070b31e0ef83fa5731a150a6d (diff) | |
Fix compilation with clang
Diffstat (limited to 'src/storage.h')
| -rw-r--r-- | src/storage.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/storage.h b/src/storage.h index 86dc48f..c67be22 100644 --- a/src/storage.h +++ b/src/storage.h @@ -98,7 +98,7 @@ private:  	unique_ptr<ChainStorage> parent;  }; -struct Storage::Priv +struct PartialStorage::Priv  {  	shared_ptr<StorageBackend> backend; @@ -111,7 +111,7 @@ struct Storage::Priv  	optional<Digest> copy(const ObjectT<S> &, vector<Digest> *) const;  }; -struct Ref::Priv +struct PartialRef::Priv  {  	const unique_ptr<PartialStorage> storage;  	const Digest digest; |