fix: Fix Milvus build error (#39008)

Issue: #39005

Signed-off-by: Cai Yudong <yudong.cai@zilliz.com>
pull/38990/head
Cai Yudong 2025-01-07 14:22:56 +08:00 committed by GitHub
parent 3739446a33
commit 84f8047a86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -989,11 +989,11 @@ class BitsetView : public BitsetBase<PolicyT,
BitsetView() = default;
BitsetView(const BitsetView&) = default;
BitsetView(BitsetView&&) noexcept = default;
BitsetView(BitsetView&&) = default;
BitsetView&
operator=(const BitsetView&) = default;
BitsetView&
operator=(BitsetView&&) noexcept = default;
operator=(BitsetView&&) = default;
template <typename ImplT, bool R>
explicit BitsetView(BitsetBase<PolicyT, ImplT, R>& bitset)
@ -1077,13 +1077,13 @@ class Bitset
// Do not allow implicit copies (Rust style).
Bitset(const Bitset&) = delete;
// Allow default move.
Bitset(Bitset&&) noexcept = default;
Bitset(Bitset&&) = default;
// Do not allow implicit copies (Rust style).
Bitset&
operator=(const Bitset&) = delete;
// Allow default move.
Bitset&
operator=(Bitset&&) noexcept = default;
operator=(Bitset&&) = default;
template <typename C, bool R>
explicit Bitset(const BitsetBase<PolicyT, C, R>& other) {