Skip to content
Snippets Groups Projects
Commit 82b93219 authored by Martin Schönherr's avatar Martin Schönherr :speech_balloon:
Browse files

fixed warning

parent fdd9e322
No related branches found
No related tags found
1 merge request!67fix initialGridInformations() in GridReader
......@@ -650,7 +650,7 @@ void convertMPFile(SPtr<MultipleGridBuilder> gridBuilder, real &phi, std::vector
std::ofstream outFile(inputPath + "measurePoints.dat");
outFile << numberOfMeasurePoints << std::endl;
for (int j = 0; j < numberOfMeasurePoints; j++) {
for (uint j = 0; j < numberOfMeasurePoints; j++) {
outFile << MP_name[j] << " " << MP_k[j] << " " << MP_level[j] << std::endl;
// std::cout << MP_name[j] << "\t" << MP_k[j] << "\t" << MP_level[j] << std::endl;
}
......
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