We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b8a54 commit 1e3acfaCopy full SHA for 1e3acfa
1 file changed
include/bitcoin/database/impl/query/objects.ipp
@@ -322,7 +322,8 @@ bool CLASS::populate(const transaction& tx) const NOEXCEPT
322
return std::all_of(ins->begin(), ins->end(),
323
[this](const auto& in) NOEXCEPT
324
{
325
- return populate(*in);
+ // Work around bogus clang warning.
326
+ return this->populate(*in);
327
});
328
}
329
@@ -336,7 +337,8 @@ bool CLASS::populate(const block& block) const NOEXCEPT
336
337
return std::all_of(std::next(txs->begin()), txs->end(),
338
[this](const auto& tx) NOEXCEPT
339
- return populate(*tx);
340
341
+ return this->populate(*tx);
342
343
344
0 commit comments