Fixing compilation

This commit is contained in:
bernat 2023-03-01 10:34:11 +01:00
parent 44f0b8cd24
commit c243eb7844
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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; };