diff --git a/src/gpu/VirtualFluids_GPU/Communication/ExchangeData27.cpp b/src/gpu/VirtualFluids_GPU/Communication/ExchangeData27.cpp index bdd747ee856cb88e3c46ee93a0fedd394707a074..48a27efa674e5fa85d47cb9439c52d0c558dac44 100644 --- a/src/gpu/VirtualFluids_GPU/Communication/ExchangeData27.cpp +++ b/src/gpu/VirtualFluids_GPU/Communication/ExchangeData27.cpp @@ -82,7 +82,7 @@ void copyEdgeNodes(std::vector<LBMSimulationParameter::EdgeNodePositions> &edgeN int numNodesInBufferSend = 0; #pragma omp parallel for - for (uint i = 0; i < edgeNodes.size(); i++) { + for (int i = 0; i < (int)edgeNodes.size(); i++) { indexInSubdomainRecv = edgeNodes[i].indexOfProcessNeighborRecv; indexInSubdomainSend = edgeNodes[i].indexOfProcessNeighborSend; numNodesInBufferRecv = recvProcessNeighborHost[indexInSubdomainRecv].numberOfNodes;