We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3387044 commit 5cc7d20Copy full SHA for 5cc7d20
include/minisketch.h
@@ -248,8 +248,8 @@ class Minisketch
248
/** Check whether this Minisketch object is valid. */
249
explicit operator bool() const noexcept { return bool{m_minisketch}; }
250
251
- /** Construct an (invalid) Minisketch object. */
252
- Minisketch() noexcept = default;
+ /** Default constructor is deleted. */
+ Minisketch() noexcept = delete;
253
254
/** Move constructor. */
255
Minisketch(Minisketch&&) noexcept = default;
0 commit comments