Try to make clang-format happy

This commit is contained in:
Nicolas Werner 2023-01-09 05:00:22 +01:00
parent 008f71cdbd
commit c5edd21e6b
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ InputBar::insertMimeData(const QMimeData *md)
// NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste // NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste
// local files, skip remote ones. // local files, skip remote ones.
[&md] { [&md] {
for (const auto &u : md->urls()) { for (auto &&u : md->urls()) {
if (u.isLocalFile()) if (u.isLocalFile())
return true; return true;
} }