Skip to content

Commit

Permalink
We don;t need precision for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed May 29, 2024
1 parent 9ee931f commit 1f79a85
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/NDItk/base/StringListRecord/src/write.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ void write( OutputIterator& iter ) const {

while ( full-- ) {

buffer << " " << x[0];
buffer << ' ' << std::setprecision( 15 ) << x[1];
buffer << ' ' << std::setprecision( 15 ) << x[2];
buffer << ' ' << std::setprecision( 15 ) << x[3];
buffer << ' ' << std::setprecision( 15 ) << x[4] << '\n';
buffer << " " << x[0] << ' ' << x[1] << ' ' << x[2]
<< ' ' << x[3] << ' ' << x[4] << '\n';
x += 5;
}

Expand Down

0 comments on commit 1f79a85

Please sign in to comment.