Skip to content

Commit

Permalink
fix: Fix Milvus build error (#39008)
Browse files Browse the repository at this point in the history
Issue: #39005

Signed-off-by: Cai Yudong <[email protected]>
  • Loading branch information
cydrain authored Jan 7, 2025
1 parent 3739446 commit 84f8047
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/core/src/bitset/bitset.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 84f8047

Please sign in to comment.