We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd1544 commit d14a048Copy full SHA for d14a048
libcxx/test/std/containers/sequences/vector/vector.modifiers/common.h
@@ -42,7 +42,7 @@ bool Throws::sThrows = false;
42
struct ThrowingMove {
43
TEST_CONSTEXPR ThrowingMove() : value(0), do_throw(false) {}
44
TEST_CONSTEXPR explicit ThrowingMove(int v) : value(v), do_throw(false) {}
45
- TEST_CONSTEXPR explicit ThrowingMove(int v, bool do_throw) : value(v), do_throw(do_throw) {}
+ TEST_CONSTEXPR explicit ThrowingMove(int v, bool throw_) : value(v), do_throw(throw_) {}
46
47
ThrowingMove(const ThrowingMove& rhs) = default;
48
ThrowingMove& operator=(const ThrowingMove&) = default;
0 commit comments