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:
@@ -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);
|
||||
}
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user