Commit 88a164c3 authored by Dominik Charousset's avatar Dominik Charousset

Add missing default copy ctor/assign

parent ba13508d
...@@ -45,6 +45,7 @@ public: ...@@ -45,6 +45,7 @@ public:
type_erased_tuple() = default; type_erased_tuple() = default;
type_erased_tuple(const type_erased_tuple&) = default; type_erased_tuple(const type_erased_tuple&) = default;
type_erased_tuple& operator=(const type_erased_tuple&) = default;
virtual ~type_erased_tuple(); virtual ~type_erased_tuple();
......
...@@ -170,6 +170,8 @@ public: ...@@ -170,6 +170,8 @@ public:
*this = x; *this = x;
} }
caf_handle(const caf_handle&) = default;
inline caf_handle& operator=(caf::abstract_actor* x) { inline caf_handle& operator=(caf::abstract_actor* x) {
ptr_ = x; ptr_ = x;
return *this; return *this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment