Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tlk00 committed Nov 11, 2021
1 parent 1113416 commit 65cd6ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/bm.h
Original file line number Diff line number Diff line change
Expand Up @@ -1728,14 +1728,16 @@ class bvector

/*!
\brief 3-operand AND where result is ORed into the terget vector : this |= bv1 AND bv2
TARGET := TARGET OR (BV1 AND BV2)
\param bv1 - Argument vector 1
\param bv2 - Argument vector 2
\param opt_mode - optimization compression
(when it is performed on the fly it is faster than a separate
call to optimize()
@sa optimize, bit_and
*/
bm::bvector<Alloc>& bit_and_or(const bm::bvector<Alloc>& bv1,
bm::bvector<Alloc>& bit_or_and(const bm::bvector<Alloc>& bv1,
const bm::bvector<Alloc>& bv2,
typename bm::bvector<Alloc>::optmode opt_mode=opt_none);

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

template<class Alloc>
bm::bvector<Alloc>&
bvector<Alloc>::bit_and_or(const bm::bvector<Alloc>& bv1,
bvector<Alloc>::bit_or_and(const bm::bvector<Alloc>& bv1,
const bm::bvector<Alloc>& bv2,
typename bm::bvector<Alloc>::optmode opt_mode)
{
Expand Down

0 comments on commit 65cd6ab

Please sign in to comment.