From 84f8047a86f4879011761a5076429720f00d5f15 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Tue, 7 Jan 2025 14:22:56 +0800 Subject: [PATCH] fix: Fix Milvus build error (#39008) Issue: #39005 Signed-off-by: Cai Yudong --- internal/core/src/bitset/bitset.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/core/src/bitset/bitset.h b/internal/core/src/bitset/bitset.h index 0e739dc6a310c..28859fbdf65cf 100644 --- a/internal/core/src/bitset/bitset.h +++ b/internal/core/src/bitset/bitset.h @@ -989,11 +989,11 @@ class BitsetView : public BitsetBase explicit BitsetView(BitsetBase& 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 explicit Bitset(const BitsetBase& other) {