Skip to content

Commit a9c719a

Browse files
committed
removes noexcept from accum iterator move
1 parent b285ed2 commit a9c719a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accumulate.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ class iter::impl::Accumulator {
8282
return *this;
8383
}
8484

85-
Iterator(Iterator&&) noexcept = default;
86-
Iterator& operator=(Iterator&&) noexcept = default;
85+
Iterator(Iterator&&) = default;
86+
Iterator& operator=(Iterator&&) = default;
8787

8888
const AccumVal& operator*() const {
8989
return *this->acc_val;

0 commit comments

Comments
 (0)