mutation_partition: use row::_cells directly in operator<<
Signed-off-by: Paweł Dziepak <pdziepak@cloudius-systems.com>
This commit is contained in:
@@ -349,7 +349,7 @@ operator<<(std::ostream& os, const row::value_type& rv) {
|
||||
|
||||
std::ostream&
|
||||
operator<<(std::ostream& os, const row& r) {
|
||||
return fprint(os, "{row: %s}", ::join(", ", r));
|
||||
return fprint(os, "{row: %s}", ::join(", ", r._cells));
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
|
||||
@@ -162,10 +162,11 @@ public:
|
||||
}
|
||||
|
||||
bool operator==(const row&) const;
|
||||
|
||||
friend std::ostream& operator<<(std::ostream& os, const row& r);
|
||||
};
|
||||
|
||||
std::ostream& operator<<(std::ostream& os, const row::value_type& rv);
|
||||
std::ostream& operator<<(std::ostream& os, const row& r);
|
||||
|
||||
class row_marker {
|
||||
static constexpr gc_clock::duration no_ttl { 0 };
|
||||
|
||||
Reference in New Issue
Block a user