Skip to content

Commit

Permalink
fixup! Use console reporter's totals summary for compact reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
psalz committed Oct 25, 2022
1 parent f0982f6 commit 0dea420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/catch2/reporters/catch_reporter_helpers.cpp
Expand Up @@ -260,14 +260,14 @@ namespace Catch {

std::string const& getSuffix() const { return m_suffix; }
Colour::Code getColour() const { return m_colour; }
std::string const& getRow( size_t index ) const {
std::string const& getRow( std::size_t index ) const {
return m_rows[index];
}

private:
std::string m_suffix;
Colour::Code m_colour;
std::uint64_t m_width = 0;
std::size_t m_width = 0;
std::vector<std::string> m_rows;
};

Expand Down

0 comments on commit 0dea420

Please sign in to comment.