Skip to content
Snippets Groups Projects
Unverified Commit 90645f06 authored by René Fritze's avatar René Fritze
Browse files

[stuff-leftovers] add another missing storageprovider ctor

parent 8074f0b2
No related branches found
No related tags found
No related merge requests found
...@@ -285,6 +285,11 @@ public: ...@@ -285,6 +285,11 @@ public:
{ {
} }
explicit ConstStorageProvider(std::shared_ptr<T> tt)
: storage_(Common::make_unique<internal::ConstAccessByPointer<T>>(tt))
{
}
explicit ConstStorageProvider(std::unique_ptr<const T>&& tt) explicit ConstStorageProvider(std::unique_ptr<const T>&& tt)
: storage_(tt) : storage_(tt)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment