Commit 29d5e43d authored by Dominik Charousset's avatar Dominik Charousset

Add missing compare overload to typed_actor

parent 0a25eb73
...@@ -219,6 +219,10 @@ class typed_actor : detail::comparable<typed_actor<Sigs...>>, ...@@ -219,6 +219,10 @@ class typed_actor : detail::comparable<typed_actor<Sigs...>>,
return ptr_ ? 1 : 0; return ptr_ ? 1 : 0;
} }
intptr_t compare(const invalid_actor_t&) const noexcept {
return ptr_ ? 1 : 0;
}
/// @endcond /// @endcond
private: private:
......
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