Skip to content

Commit 65cd6ab

Browse files
committed
Code cleanup
1 parent 1113416 commit 65cd6ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/bm.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1728,14 +1728,16 @@ class bvector
17281728

17291729
/*!
17301730
\brief 3-operand AND where result is ORed into the terget vector : this |= bv1 AND bv2
1731+
TARGET := TARGET OR (BV1 AND BV2)
1732+
17311733
\param bv1 - Argument vector 1
17321734
\param bv2 - Argument vector 2
17331735
\param opt_mode - optimization compression
17341736
(when it is performed on the fly it is faster than a separate
17351737
call to optimize()
17361738
@sa optimize, bit_and
17371739
*/
1738-
bm::bvector<Alloc>& bit_and_or(const bm::bvector<Alloc>& bv1,
1740+
bm::bvector<Alloc>& bit_or_and(const bm::bvector<Alloc>& bv1,
17391741
const bm::bvector<Alloc>& bv2,
17401742
typename bm::bvector<Alloc>::optmode opt_mode=opt_none);
17411743

@@ -5554,7 +5556,7 @@ bvector<Alloc>::bit_and(const bm::bvector<Alloc>& bv1,
55545556

55555557
template<class Alloc>
55565558
bm::bvector<Alloc>&
5557-
bvector<Alloc>::bit_and_or(const bm::bvector<Alloc>& bv1,
5559+
bvector<Alloc>::bit_or_and(const bm::bvector<Alloc>& bv1,
55585560
const bm::bvector<Alloc>& bv2,
55595561
typename bm::bvector<Alloc>::optmode opt_mode)
55605562
{

0 commit comments

Comments
 (0)