Skip to content
Snippets Groups Projects
Commit 7cea1421 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[memory] drop ambiguous ctors

parent bd047822
No related branches found
No related tags found
No related merge requests found
......@@ -279,9 +279,6 @@ public:
: storage_(make_unique<internal::ConstAccessByPointer<T>>(tt))
{
}
explicit ConstStorageProvider(std::unique_ptr<const T>&& tt)
: storage_(make_unique<internal::ConstAccessByPointer<T>>(tt))
{
}
......@@ -326,9 +323,6 @@ public:
: storage_(make_unique<internal::AccessByPointer<T>>(tt))
{
}
explicit StorageProvider(std::unique_ptr<T>&& tt)
: storage_(make_unique<internal::AccessByPointer<T>>(tt))
{
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment