Skip to content

Commit

Permalink
Use 4 digits in data files by default
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Sep 18, 2024
1 parent 2e79602 commit 7df83a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vtk_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
namespace
{

std::string set_width( const int value, const unsigned width = 3 )
std::string set_width( const int value, const unsigned width = 4 )
{
std::ostringstream oss;
oss << std::setw( width ) << std::setfill( '0' ) << value;
Expand Down

0 comments on commit 7df83a4

Please sign in to comment.