2
0
mirror of https://github.com/boostorg/bloom.git synced 2026-01-19 04:02:11 +00:00

tested &=/|= return value

This commit is contained in:
joaquintides
2025-04-21 20:28:32 +02:00
parent c47f19e68c
commit 6469da6129

View File

@@ -72,9 +72,11 @@ void test_combination()
f1_copy{f1},
empty{f1.capacity()};
f1|=empty;
filter& rf1=(f1|=empty);
BOOST_TEST_EQ(&rf1,&f1);
BOOST_TEST(f1==f1_copy);
f1&=empty;
filter& rf2=(f1&=empty);
BOOST_TEST_EQ(&rf2,&f1);
BOOST_TEST(f1==empty);
}
{