File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1728,14 +1728,16 @@ class bvector
1728
1728
1729
1729
/* !
1730
1730
\brief 3-operand AND where result is ORed into the terget vector : this |= bv1 AND bv2
1731
+ TARGET := TARGET OR (BV1 AND BV2)
1732
+
1731
1733
\param bv1 - Argument vector 1
1732
1734
\param bv2 - Argument vector 2
1733
1735
\param opt_mode - optimization compression
1734
1736
(when it is performed on the fly it is faster than a separate
1735
1737
call to optimize()
1736
1738
@sa optimize, bit_and
1737
1739
*/
1738
- bm::bvector<Alloc>& bit_and_or (const bm::bvector<Alloc>& bv1,
1740
+ bm::bvector<Alloc>& bit_or_and (const bm::bvector<Alloc>& bv1,
1739
1741
const bm::bvector<Alloc>& bv2,
1740
1742
typename bm::bvector<Alloc>::optmode opt_mode=opt_none);
1741
1743
@@ -5554,7 +5556,7 @@ bvector<Alloc>::bit_and(const bm::bvector<Alloc>& bv1,
5554
5556
5555
5557
template <class Alloc >
5556
5558
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,
5558
5560
const bm::bvector<Alloc>& bv2,
5559
5561
typename bm::bvector<Alloc>::optmode opt_mode)
5560
5562
{
You can’t perform that action at this time.
0 commit comments