Fix CE.
GitOrigin-RevId: 96ac1ebeb782a349833d9d4b16e1a8019e6fc199
This commit is contained in:
parent
8fd13291d0
commit
79d8c5a97a
@ -150,6 +150,8 @@ class ActorRef {
|
||||
template <class T>
|
||||
ActorRef(const ActorId<T> &actor_id);
|
||||
template <class T>
|
||||
ActorRef(ActorId<T> &&actor_id);
|
||||
template <class T>
|
||||
ActorRef(const ActorShared<T> &actor_id);
|
||||
template <class T>
|
||||
ActorRef(ActorShared<T> &&actor_id);
|
||||
|
@ -181,7 +181,7 @@ template <class T>
|
||||
ActorRef::ActorRef(const ActorId<T> &actor_id) : actor_id_(actor_id) {
|
||||
}
|
||||
template <class T>
|
||||
ActorRef::ActorRef(const ActorId<T> &&actor_id) : actor_id_(actor_id) {
|
||||
ActorRef::ActorRef(ActorId<T> &&actor_id) : actor_id_(actor_id) {
|
||||
actor_id.clear();
|
||||
}
|
||||
template <class T>
|
||||
|
Reference in New Issue
Block a user