Fix clang build, second version (#33)

This commit is contained in:
Anton Samokhvalov 2023-01-15 19:13:29 +03:00 committed by GitHub
parent 50852e5319
commit f77a664e9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,8 +199,8 @@ void CHyprpaper::ensurePoolBuffersPresent() {
if (m->size == Vector2D())
continue;
auto it = std::find_if(m_vBuffers.begin(), m_vBuffers.end(), [&](const std::unique_ptr<SPoolBuffer>& el) {
return el->target == wt.m_szPath && el->pixelSize == m->size * m->scale;
auto it = std::find_if(m_vBuffers.begin(), m_vBuffers.end(), [wt = &wt, &m](const std::unique_ptr<SPoolBuffer>& el) {
return el->target == wt->m_szPath && el->pixelSize == m->size * m->scale;
});
if (it == m_vBuffers.end()) {