Construct a clone of the specified sketch. */
| 230 | |
| 231 | /** Construct a clone of the specified sketch. */ |
| 232 | Minisketch(const Minisketch& sketch) noexcept |
| 233 | { |
| 234 | if (sketch.m_minisketch) { |
| 235 | m_minisketch = std::unique_ptr<minisketch, Deleter>(minisketch_clone(sketch.m_minisketch.get())); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | /** Make this Minisketch a clone of the specified one. */ |
| 240 | Minisketch& operator=(const Minisketch& sketch) noexcept |
nothing calls this directly
no test coverage detected