Fixed int to uint8_t

This commit is contained in:
Marc Garcia Puig 2020-11-04 12:57:41 +01:00
parent 8ffbf13fc7
commit 993f440bb8
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ boost::python::list StdVectorToPyList(const std::vector<T> &vec) {
}
static boost::python::list GetSemanticTags(const carla::client::Actor &self) {
const std::vector<int> &tags = self.GetSemanticTags();
const std::vector<uint8_t> &tags = self.GetSemanticTags();
return StdVectorToPyList(tags);
}