Skip to content
Snippets Groups Projects
Commit f9c7ad68 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Avoid signed/unsigned warning

[[Imported from SVN: r9840]]
parent 07a668a0
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ private:
std::vector<TransferVectorTuple> localVectorEntries;
// Translate vector entries
for (int k=0; k<localVector.size(); k++)
for (size_t k=0; k<localVector.size(); k++)
localVectorEntries.push_back(TransferVectorTuple(guIndex.globalIndex(k), localVector[k]));
// Get number of vector entries on each process
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment