Skip to content
Snippets Groups Projects
Commit e288dc56 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[memory] fix some more constructors in StorageProvider

parent f0686364
No related branches found
No related tags found
1 merge request!15Disable pybindxi warnings
Pipeline #57952 passed
...@@ -86,7 +86,7 @@ public: ...@@ -86,7 +86,7 @@ public:
{} {}
explicit ConstAccessByPointer(std::unique_ptr<const T>&& tt) explicit ConstAccessByPointer(std::unique_ptr<const T>&& tt)
: tt_(tt) : tt_(std::move(tt))
{} {}
explicit ConstAccessByPointer(std::shared_ptr<const T> tt) explicit ConstAccessByPointer(std::shared_ptr<const T> tt)
...@@ -186,7 +186,7 @@ public: ...@@ -186,7 +186,7 @@ public:
{} {}
explicit AccessByPointer(std::unique_ptr<T>&& tt) explicit AccessByPointer(std::unique_ptr<T>&& tt)
: tt_(tt) : tt_(std::move(tt))
{} {}
explicit AccessByPointer(std::shared_ptr<T> tt) explicit AccessByPointer(std::shared_ptr<T> tt)
...@@ -318,7 +318,9 @@ public: ...@@ -318,7 +318,9 @@ public:
: storage_(new internal::ConstAccessByPointer<T>(tt)) : storage_(new internal::ConstAccessByPointer<T>(tt))
{} {}
explicit ConstStorageProvider(T&& tt) // We have to disable this constructor if T is not a complete type to avoid compilation failures
template <class S, typename std::enable_if_t<std::is_constructible<T, S&&>::value, bool> = true>
explicit ConstStorageProvider(S&& tt)
: storage_(new internal::ConstAccessByValue<T>(std::move(tt))) : storage_(new internal::ConstAccessByValue<T>(std::move(tt)))
{} {}
...@@ -327,7 +329,7 @@ public: ...@@ -327,7 +329,7 @@ public:
{} {}
explicit ConstStorageProvider(std::unique_ptr<const T>&& tt) explicit ConstStorageProvider(std::unique_ptr<const T>&& tt)
: storage_(tt) : storage_(new internal::ConstAccessByPointer<T>(std::move(tt)))
{} {}
ConstStorageProvider(const ConstStorageProvider<T>& other) ConstStorageProvider(const ConstStorageProvider<T>& other)
......
...@@ -40,11 +40,7 @@ public: ...@@ -40,11 +40,7 @@ public:
: function_storage_(function) : function_storage_(function)
{} {}
StateFunctionAsFluxFunctionWrapper(const FunctionType*&& function_ptr) StateFunctionAsFluxFunctionWrapper(std::unique_ptr<const FunctionType>&& function_ptr)
: function_storage_(std::move(function_ptr))
{}
StateFunctionAsFluxFunctionWrapper(std::unique_ptr<FunctionType>&& function_ptr)
: function_storage_(std::move(function_ptr)) : function_storage_(std::move(function_ptr))
{} {}
......
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