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 c0c1472 commit faa653fCopy full SHA for faa653f
libcxx/test/std/containers/sequences/vector/vector.cons/exceptions.pass.cpp
@@ -139,9 +139,9 @@ int main(int, char**) {
139
check_new_delete_called();
140
#endif // TEST_STD_VER >= 14
141
142
- try { // Throw in vector(size_type, value_type, const allocator_type&) from the type
143
- int throw_after = 1;
144
- ThrowingT v(throw_after);
+ try { // Throw in vector(size_type, value_type, const allocator_type&) from the type
+ int throw_after = 1;
+ ThrowingT v(throw_after);
145
std::vector<ThrowingT> vec(1, v, std::allocator<ThrowingT>());
146
} catch (int) {
147
}
0 commit comments