Skip to content
Snippets Groups Projects
Commit bf4b5b4b authored by Lars Bilke's avatar Lars Bilke
Browse files

The conditional expressions of the 'if' operators situated alongside each other are identical.

parent 6d892184
No related branches found
No related tags found
No related merge requests found
...@@ -604,11 +604,7 @@ void writeGLIFileV4 (const std::string& fname, ...@@ -604,11 +604,7 @@ void writeGLIFileV4 (const std::string& fname,
for (std::size_t j(0); j < (*plys)[k]->getNumberOfPoints(); j++) for (std::size_t j(0); j < (*plys)[k]->getNumberOfPoints(); j++)
os << " " << ((*plys)[k])->getPointID(j) << "\n"; os << " " << ((*plys)[k])->getPointID(j) << "\n";
} }
}
if (plys_vec)
{
const std::vector<GeoLib::Polyline*>* plys(plys_vec->getVector());
INFO("GeoLib::writeGLIFileV4(): write closed polylines as surfaces to file %s.", INFO("GeoLib::writeGLIFileV4(): write closed polylines as surfaces to file %s.",
fname.c_str()); fname.c_str());
for (std::size_t k(0); k < plys->size(); k++) for (std::size_t k(0); k < plys->size(); k++)
......
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