Skip to content

Commit 46b533d

Browse files
committed
Update minisketch subtree to latest upstream
2 parents 8309a97 + bf25a09 commit 46b533d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/minisketch/include/minisketch.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ MINISKETCH_API void minisketch_serialize(const minisketch* sketch, unsigned char
115115
MINISKETCH_API void minisketch_deserialize(minisketch* sketch, const unsigned char* input);
116116

117117
/** Add an element to a sketch.
118-
*
118+
*
119119
* If the element to be added is too large for the sketch, the most significant
120120
* bits of the element are dropped. More precisely, if the element size of
121121
* `sketch` is b bits, then this function adds the unsigned integer represented
122122
* by the b least significant bits of `element` to `sketch`.
123-
*
123+
*
124124
* If the element to be added is 0 (after potentially dropping the most significant
125125
* bits), then this function is a no-op. Sketches cannot contain an element with
126126
* the value 0.
@@ -248,8 +248,8 @@ class Minisketch
248248
/** Check whether this Minisketch object is valid. */
249249
explicit operator bool() const noexcept { return bool{m_minisketch}; }
250250

251-
/** Construct an (invalid) Minisketch object. */
252-
Minisketch() noexcept = default;
251+
/** Default constructor is deleted. */
252+
Minisketch() noexcept = delete;
253253

254254
/** Move constructor. */
255255
Minisketch(Minisketch&&) noexcept = default;

0 commit comments

Comments
 (0)