Commit d5c0956f authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #1079

parents ca51c757 98133f5a
...@@ -149,6 +149,7 @@ is based on [Keep a Changelog](https://keepachangelog.com). ...@@ -149,6 +149,7 @@ is based on [Keep a Changelog](https://keepachangelog.com).
types instead of hard-wiring `std::system_clock`. types instead of hard-wiring `std::system_clock`.
- In some edge cases, actors failed to shut down properly when hosting a stream - In some edge cases, actors failed to shut down properly when hosting a stream
source (#1076). The handshake process for a graceful shutdown has been fixed. source (#1076). The handshake process for a graceful shutdown has been fixed.
- Fixed a compiler error on Clang 10 (#1077).
## [0.17.4] - 2019-02-08 ## [0.17.4] - 2019-02-08
......
...@@ -456,7 +456,7 @@ public: ...@@ -456,7 +456,7 @@ public:
} }
inject_clause& to(const caf::scoped_actor& whom) { inject_clause& to(const caf::scoped_actor& whom) {
dest_ = whom.ptr(); dest_ = caf::actor_cast<caf::strong_actor_ptr>(whom.ptr());
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