mutation_partition: use row::_cells directly in operator<<

Signed-off-by: Paweł Dziepak <pdziepak@cloudius-systems.com>
This commit is contained in:
Paweł Dziepak
2015-08-26 10:20:41 +02:00
parent f7e5ea0436
commit 25dfd70bc6
2 changed files with 3 additions and 2 deletions

View File

@@ -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&

View File

@@ -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 };