Skip to content

Commit

Permalink
Update src/simplnx/Utilities/StringUtilities.hpp
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Young <nathan.young@bluequartz.net>
  • Loading branch information
imikejackson and nyoungbq authored Feb 18, 2025
1 parent 5cf5dc9 commit da09d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplnx/Utilities/StringUtilities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ inline std::string GenerateIndexString(int32 index, int32 maxIndex)
mag++;
max = max / 10;
}
std::stringstream ss; // Create a QTextStream to set up the padding
std::stringstream ss; // Create a stringstream to set up the padding
ss << std::setw(mag) << std::setfill('0') << index;
numStr = ss.str();
}
Expand Down

0 comments on commit da09d8c

Please sign in to comment.