Skip to content

Commit

Permalink
Fix warning in JTablePrinter
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwbrei committed Aug 6, 2024
1 parent acc3538 commit b276154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/JANA/Utils/JTablePrinter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ void JTablePrinter::Render(std::ostream& os) const {
}

// Print rows
for (size_t row = 0; row < current_row; ++row) {
for (int row = 0; row < current_row; ++row) {
std::vector<std::vector<std::string>> lines;
size_t line_count = 1;
for (const auto& col : columns) {
Expand Down

0 comments on commit b276154

Please sign in to comment.