clang: fix -Wrange-loop-analysis warnings

This commit is contained in:
selsta 2021-04-27 05:21:16 +02:00
parent 0a1ddc2eff
commit 451b5a510e
No known key found for this signature in database
GPG key ID: 2EA0A99A8B07AE5E
3 changed files with 4 additions and 4 deletions

View file

@ -51,7 +51,7 @@ namespace test
if (!cryptonote::find_tx_extra_field_by_type(extra_fields, key_field))
throw std::runtime_error{"invalid transaction"};
for (auto const& input : boost::adaptors::index(source.vout))
for (auto const input : boost::adaptors::index(source.vout))
{
source_amount += input.value().amount;
auto const& key = boost::get<cryptonote::txout_to_key>(input.value().target);