1
0
Fork 0
forked from lthn/blockchain

handle_2_alternative_types_in_variant_container fixed

This commit is contained in:
sowle 2020-04-28 15:10:59 +03:00
parent e30214d722
commit 1cb908a484
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -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;
}
}