Updates from BitShares FC #22

Closed
nathanielhourt wants to merge 693 commits from dapp-support into latest-fc
Showing only changes of commit 7e69567dd0 - Show all commits

View file

@ -225,7 +225,8 @@ public:
if (a.which() != b.which())
return false;
return typelist::runtime::dispatch(list(), a.which(), [&a, &b](auto t) {
return a.get<typename decltype(t)::type>() == b.get<typename decltype(t)::type>();
using Value = typename decltype(t)::type;
return a.template get<Value>() == b.template get<Value>();
});
}