Skip to content

Commit 1e3acfa

Browse files
committed
Work around bogus clang warning.
1 parent f9b8a54 commit 1e3acfa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/bitcoin/database/impl/query/objects.ipp

+4-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,8 @@ bool CLASS::populate(const transaction& tx) const NOEXCEPT
322322
return std::all_of(ins->begin(), ins->end(),
323323
[this](const auto& in) NOEXCEPT
324324
{
325-
return populate(*in);
325+
// Work around bogus clang warning.
326+
return this->populate(*in);
326327
});
327328
}
328329

@@ -336,7 +337,8 @@ bool CLASS::populate(const block& block) const NOEXCEPT
336337
return std::all_of(std::next(txs->begin()), txs->end(),
337338
[this](const auto& tx) NOEXCEPT
338339
{
339-
return populate(*tx);
340+
// Work around bogus clang warning.
341+
return this->populate(*tx);
340342
});
341343
}
342344

0 commit comments

Comments
 (0)