From e3a2c9be528c0a3dc61ca221f02690d30c77bb24 Mon Sep 17 00:00:00 2001 From: HenrikAsmuth <henrik.asmuth@geo.uu.se> Date: Mon, 12 Sep 2022 13:58:27 +0200 Subject: [PATCH] fix for msvc compiler warning --- src/gpu/GridGenerator/VelocitySetter/VelocitySetter.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gpu/GridGenerator/VelocitySetter/VelocitySetter.cu b/src/gpu/GridGenerator/VelocitySetter/VelocitySetter.cu index b499fe386..6739c7284 100644 --- a/src/gpu/GridGenerator/VelocitySetter/VelocitySetter.cu +++ b/src/gpu/GridGenerator/VelocitySetter/VelocitySetter.cu @@ -259,9 +259,9 @@ void VTKReader::fillArrays(std::vector<real>& coordsY, std::vector<real>& coords real posZ = coordsZ[i]; bool foundNT = false, foundNB = false, foundST = false, foundSB = false, foundAll = false; - for(int level=(int)this->fileCollection->files.size(); level>0; level--) // go backwards to find finest nodes first + for(uint level=this->fileCollection->files.size(); level>0; level--) // go backwards to find finest nodes first { - for(int fileId=0; fileId<(int)this->fileCollection->files[level].size(); fileId++) + for(uint fileId=0; fileId<this->fileCollection->files[level].size(); fileId++) { VTKFile file = this->fileCollection->files[level][fileId][0]; if(!file.inBoundingBox(posY, posZ, 0.0f)) continue; -- GitLab