Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Apr 22, 2024
1 parent ee82a90 commit 1ae13a7
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,11 +308,10 @@ TEST(AllocatorPropagatingCopyTest, copyVectorRegular)
TEST(AllocatorPropagatingCopyTest, copyString)
{
RegularWithAllocatorSupport::allocator_type allocator;

const zserio::string<RegularWithAllocatorSupport::allocator_type>
emptyString(allocator);
zserio::string<RegularWithAllocatorSupport::allocator_type>
emptyStringCopy(allocatorPropagatingCopy(emptyString, allocator));

const zserio::string<RegularWithAllocatorSupport::allocator_type> emptyString(allocator);
zserio::string<RegularWithAllocatorSupport::allocator_type> emptyStringCopy(
allocatorPropagatingCopy(emptyString, allocator));
ASSERT_EQ(emptyString.get_allocator(), emptyStringCopy.get_allocator());
}

Expand Down

0 comments on commit 1ae13a7

Please sign in to comment.