File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -707,12 +707,10 @@ TEST(StringMapCustomTest, NonConstIterator) {
707707 " The value_type of a non-const iterator should not be a const type." );
708708
709709 // Check that pointer and reference types are not const.
710- static_assert (
711- std::is_same_v<StringMap<int >::iterator::pointer,
712- StringMap<int >::iterator::value_type *>);
713- static_assert (
714- std::is_same_v<StringMap<int >::iterator::reference,
715- StringMap<int >::iterator::value_type &>);
710+ static_assert (std::is_same_v<StringMap<int >::iterator::pointer,
711+ StringMap<int >::iterator::value_type *>);
712+ static_assert (std::is_same_v<StringMap<int >::iterator::reference,
713+ StringMap<int >::iterator::value_type &>);
716714
717715 // Check that we can construct a const_iterator from an iterator.
718716 static_assert (std::is_constructible_v<StringMap<int >::const_iterator,
You can’t perform that action at this time.
0 commit comments