forked from lthn/blockchain
handle_2_alternative_types_in_variant_container fixed
This commit is contained in:
parent
e30214d722
commit
1cb908a484
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ namespace currency
|
|||
else if (item.type() == typeid(B))
|
||||
{
|
||||
found = true;
|
||||
if (!cb(boost::get<A>(item)))
|
||||
if (!cb(boost::get<B>(item)))
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue