Fixing compilation
This commit is contained in:
parent
44f0b8cd24
commit
c243eb7844
|
@ -417,7 +417,7 @@ namespace detail {
|
|||
}
|
||||
|
||||
void Client::SetActorDead(rpc::ActorId actor) {
|
||||
_pimpl->AsyncCall<void>("set_actor_dead", actor);
|
||||
_pimpl->AsyncCall("set_actor_dead", actor);
|
||||
}
|
||||
|
||||
void Client::SetActorEnableGravity(rpc::ActorId actor, const bool enabled) {
|
||||
|
|
|
@ -109,7 +109,7 @@ namespace nav {
|
|||
/// make agent look at some location
|
||||
bool SetWalkerLookAt(ActorId id, carla::geom::Location location);
|
||||
/// return if the agent has been killed by a vehicle
|
||||
bool Navigation::IsWalkerAlive(ActorId id, bool &alive);
|
||||
bool IsWalkerAlive(ActorId id, bool &alive);
|
||||
|
||||
dtCrowd *GetCrowd() { return _crowd; };
|
||||
|
||||
|
|
Loading…
Reference in New Issue