Quick fix.

This commit is contained in:
Axel 2020-03-11 16:10:30 +01:00 committed by Marc Garcia Puig
parent fee8d620b4
commit bcfc906368
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@
namespace carla {
namespace client {
class TrafficLight : public Actor {
class TrafficLight : public TrafficSign {
public:
explicit TrafficLight(ActorInitializer init) : Actor(std::move(init)) {}
explicit TrafficLight(ActorInitializer init) : TrafficSign(std::move(init)) {}
void SetState(rpc::TrafficLightState state);