Avoid std::endl in the writers to avoid flushing the output stream on every line. (Thanks to Roman Zoller for the hint).

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1209 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2015-01-19 17:37:47 +00:00
parent a1617b1b98
commit f1a9b3a871
5 changed files with 53 additions and 53 deletions

View File

@@ -242,7 +242,7 @@ write_ascii(std::ostream& _out, BaseExporter& _be, Options _opt) const
_out << " " << t[0] << " " << t[1];
}
_out << "\n";
_out << '\n';
}
@@ -281,7 +281,7 @@ write_ascii(std::ostream& _out, BaseExporter& _be, Options _opt) const
}
}
}
_out << "\n";
_out << '\n';
}
}
else
@@ -318,7 +318,7 @@ write_ascii(std::ostream& _out, BaseExporter& _be, Options _opt) const
}
}
_out << "\n";
_out << '\n';
}
}