Skip to content

Commit 51db501

Browse files
committed
Review iteration
Signed-off-by: Maksim Derbasov <[email protected]>
1 parent 22b9d9d commit 51db501

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

geospatial/src/ImageHeightmap.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ void ImageHeightmap::FillHeightMap(int _subSampling,
6767
imgFormat == common::Image::PixelFormatType::BAYER_BGGR8 ||
6868
imgFormat == common::Image::PixelFormatType::BAYER_GBRG8 ||
6969
imgFormat == common::Image::PixelFormatType::BAYER_GRBG8 ||
70-
imgFormat == common::Image::PixelFormatType::BAYER_GRBG8 ||
7170
imgFormat == common::Image::PixelFormatType::BAYER_RGGB8 ||
7271
imgFormat == common::Image::PixelFormatType::BGR_INT8 ||
7372
imgFormat == common::Image::PixelFormatType::BGRA_INT8)

graphics/src/MeshManager.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void MeshManager::AddMesh(Mesh *_mesh)
246246
auto iter = this->dataPtr->meshes.find(_mesh->Name());
247247
if (iter != this->dataPtr->meshes.end())
248248
{
249-
gzdbg << "MeshManager::AddMesh replaced: " << _mesh->Name();
249+
gzdbg << "MeshManager::AddMesh replaced: " << _mesh->Name() << std::endl;
250250
iter->second.reset(_mesh);
251251
}
252252
else

0 commit comments

Comments
 (0)