Skip to content

Commit 8dd6284

Browse files
committed
Remove irrelevant comments
1 parent 5034dd6 commit 8dd6284

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ int main(int, char**) {
109109
throwing_allocator<int> alloc(/*throw_on_ctor = */ false, /*throw_on_copy = */ true);
110110
AllocVec vec(cpp17_input_iterator<int*>(a), cpp17_input_iterator<int*>(a + 2), alloc);
111111
} catch (int) {
112-
// FIXME: never called.
113112
}
114113
check_new_delete_called();
115114

@@ -118,7 +117,6 @@ int main(int, char**) {
118117
throwing_allocator<int> alloc(/*throw_on_ctor = */ false, /*throw_on_copy = */ true);
119118
AllocVec vec(forward_iterator<int*>(a), forward_iterator<int*>(a + 2), alloc);
120119
} catch (int) {
121-
// FIXME: never called.
122120
}
123121
check_new_delete_called();
124122

0 commit comments

Comments
 (0)