Skip to content

Commit

Permalink
removes noexcept from accum iterator move
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhaining committed Sep 9, 2015
1 parent b285ed2 commit a9c719a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions accumulate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class iter::impl::Accumulator {
return *this;
}

Iterator(Iterator&&) noexcept = default;
Iterator& operator=(Iterator&&) noexcept = default;
Iterator(Iterator&&) = default;
Iterator& operator=(Iterator&&) = default;

const AccumVal& operator*() const {
return *this->acc_val;
Expand Down

0 comments on commit a9c719a

Please sign in to comment.