mutation_partition: Unmark cell_entry's copy constructor as noexcept

It was a mistake, it certainly may throw because it copies cells.

(cherry picked from commit c91eefa183)
This commit is contained in:
Tomasz Grabiec
2016-03-16 17:05:47 +01:00
committed by Pekka Enberg
parent a133e48515
commit 2eb54bb068
2 changed files with 2 additions and 2 deletions

View File

@@ -1058,7 +1058,7 @@ row::~row() {
}
}
row::cell_entry::cell_entry(const cell_entry& o) noexcept
row::cell_entry::cell_entry(const cell_entry& o)
: _id(o._id)
, _cell(o._cell)
{ }

View File

@@ -59,7 +59,7 @@ class row {
, _cell(std::move(cell))
{ }
cell_entry(cell_entry&&) noexcept;
cell_entry(const cell_entry&) noexcept;
cell_entry(const cell_entry&);
column_id id() const { return _id; }
const atomic_cell_or_collection& cell() const { return _cell; }