Searched defs:NotNoexceptCopy (Results 1 – 1 of 1) sorted by relevance
24 struct NotNoexceptCopy { struct28 constexpr explicit NotNoexceptCopy(int value = 0) : value_(value) {} in NotNoexceptCopy() function29 constexpr NotNoexceptCopy(const NotNoexceptCopy& other) noexcept(false) : value_(other.value_) {} in NotNoexceptCopy() function47 constexpr NotNoexceptCopy& operator++() { ++value_; return *this; } in operator ++() argument59 static_assert(noexcept(*iter) == !std::same_as<T, NotNoexceptCopy>); in testType() argument