Fixes by clang-tidy

This commit is contained in:
magnesj 2024-03-13 02:05:15 +00:00 committed by Magne Sjaastad
parent cb1e062e99
commit b9c5ff816a

View File

@ -465,7 +465,7 @@ std::pair<std::vector<cvf::Vec3d>, std::vector<unsigned>> RifSurfaceImporter::re
}
}
if ( surfacePoints.size() == 0 ) return { {}, {} };
if ( surfacePoints.empty() ) return { {}, {} };
// Determine axes vectors
std::vector<std::pair<cvf::Vec2d, unsigned>> pairs;