Skip to content

Commit c521192

Browse files
committed
Merge bitcoin/bitcoin#32485: Update minisketch subtree
bf25a09 Squashed 'src/minisketch/' changes from d1e6bb8bbf..ea8f66b1ea (fanquake) Pull request description: Includes: * bitcoin-core/minisketch#89 * bitcoin-core/minisketch#94 (in #32482) ACKs for top commit: maflcko: lgtm ACK 46b533d willcl-ark: ACK 46b533d Tree-SHA512: 7655aa480381c711fd3397fc7031be4619d5bd67f9d68f7e69f5f903734e776b97f7a2384257b365fc4e1f504b9c97acfd4a355840d1064d4c2c2f259070f4ef
2 parents 3afde67 + 46b533d commit c521192

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)