Change of type to avoid windows error
This commit is contained in:
parent
65ae2c0366
commit
64183b025a
|
@ -117,7 +117,7 @@ ARayCastLidar::FDetection ARayCastLidar::ComputeDetection(const FHitResult& HitI
|
|||
}
|
||||
|
||||
void ARayCastLidar::ComputeAndSaveDetections(const FTransform& SensorTransform) {
|
||||
std::vector<u_int32_t> PointsPerChannel(Description.Channels);
|
||||
std::vector<uint32_t> PointsPerChannel(Description.Channels);
|
||||
|
||||
for (auto idxChannel = 0u; idxChannel < Description.Channels; ++idxChannel)
|
||||
PointsPerChannel[idxChannel] = RecordedHits[idxChannel].size();
|
||||
|
|
|
@ -138,7 +138,7 @@ void ARayCastRawLidar::SimulateLidar(const float DeltaTime)
|
|||
}
|
||||
|
||||
void ARayCastRawLidar::ComputeAndSaveDetections(const FTransform& SensorTransform) {
|
||||
std::vector<u_int32_t> PointsPerChannel(Description.Channels);
|
||||
std::vector<uint32_t> PointsPerChannel(Description.Channels);
|
||||
|
||||
for (auto idxChannel = 0u; idxChannel < Description.Channels; ++idxChannel)
|
||||
PointsPerChannel[idxChannel] = RecordedHits[idxChannel].size();
|
||||
|
|
Loading…
Reference in New Issue