Skip to content

Commit 03a176f

Browse files
Fix formatting.
1 parent 0d64fef commit 03a176f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

llvm/unittests/ADT/StringMapTest.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)