Skip to content

Commit ef3f34c

Browse files
committed
Addjust code indentation
1 parent bd6dd32 commit ef3f34c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/test/std/containers/sequences/vector/vector.cons/exceptions.pass.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ int main(int, char**) {
139139
check_new_delete_called();
140140
#endif // TEST_STD_VER >= 14
141141

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);
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);
145145
std::vector<ThrowingT> vec(1, v, std::allocator<ThrowingT>());
146146
} catch (int) {
147147
}

0 commit comments

Comments
 (0)