mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
build fix (#1495)
This commit is contained in:
parent
7d9ef6e0bf
commit
99b78f78d7
3 changed files with 3 additions and 2 deletions
|
@ -445,7 +445,7 @@ TEST(Emulator, tvm_emulator_extra_currencies) {
|
|||
auto it = dict.begin();
|
||||
std::map<uint32_t, td::RefInt256> ec_balance;
|
||||
while (!it.eof()) {
|
||||
auto id = td::BitArray<32>(it.cur_pos()).to_ulong();
|
||||
auto id = static_cast<uint32_t>(td::BitArray<32>(it.cur_pos()).to_ulong());
|
||||
auto value_cs = it.cur_value();
|
||||
auto value = block::tlb::t_VarUInteger_32.as_integer(value_cs);
|
||||
ec_balance[id] = value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue