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) {