diff --git a/dune/xt/common/memory.hh b/dune/xt/common/memory.hh index 416cdbe8913233a367d54e30efc78c47300cbf1f..0b3a6095ee5f8c907ccb9f36734662d0f7d39c11 100644 --- a/dune/xt/common/memory.hh +++ b/dune/xt/common/memory.hh @@ -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)) { }