We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ad8eee commit c61ec96Copy full SHA for c61ec96
1 file changed
src/sketch_columns.cpp
@@ -22,14 +22,14 @@ FixedSizeSketchColumn::FixedSizeSketchColumn(const FixedSizeSketchColumn &other)
22
}
23
24
25
-FixedSizeSketchColumn::FixedSizeSketchColumn(FixedSizeSketchColumn &&other) :
+FixedSizeSketchColumn::FixedSizeSketchColumn(FixedSizeSketchColumn &&other) noexcept :
26
capacity(other.capacity), seed(other.seed), deterministic_bucket(other.deterministic_bucket) {
27
buckets = other.buckets;
28
other.buckets = nullptr;
29
other.capacity = 0;
30
31
32
-FixedSizeSketchColumn& FixedSizeSketchColumn::operator=(FixedSizeSketchColumn &&other) {
+FixedSizeSketchColumn& FixedSizeSketchColumn::operator=(FixedSizeSketchColumn &&other) noexcept {
33
if (this != &other) {
34
delete[] buckets;
35
capacity = other.capacity;
0 commit comments