From d9557d3bb1164a4e12f33c84f1438a42bcf1aac3 Mon Sep 17 00:00:00 2001 From: sowle Date: Thu, 24 Jul 2025 13:56:36 +0300 Subject: [PATCH] clang compilation fix --- src/simplewallet/simplewallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index bdf36d6a..70028747 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1771,7 +1771,7 @@ bool simple_wallet::transfer_so(const std::vector &args) return true; } - std::vector outs_idxs; + std::vector outs_idxs; std::string outs_str = args[0]; while (!outs_str.empty()) { @@ -1818,7 +1818,7 @@ bool simple_wallet::transfer_so(const std::vector &args) m_wallet->set_tids_to_be_only_used_in_the_next_transfer(outs_idxs); auto slh = epee::misc_utils::create_scope_leave_handler([&](){ - m_wallet->set_tids_to_be_only_used_in_the_next_transfer(std::vector()); // reset + m_wallet->set_tids_to_be_only_used_in_the_next_transfer(std::vector()); // reset }); transfer_impl(args_copy, fee);