Skip to content

Test uses deprecated API

interface_test.cpp uses

  auto& host_vehicle = repo.Create(0, "host", vehicle_properties);

It should probably replaced by

  auto& host_vehicle = repo.Create("host", vehicle_properties);

at least this change makes the warning go away :-).