Merge pull request #7688

451b5a5 clang: fix -Wrange-loop-analysis warnings (selsta)
This commit is contained in:
luigi1111 2021-05-12 16:57:32 -05:00
commit c1a1f2a6ea
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
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);