From c5edd21e6b83c9ccb2c50221346eb1a97086ceb1 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 9 Jan 2023 05:00:22 +0100 Subject: [PATCH] Try to make clang-format happy --- src/timeline/InputBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp index 333f49b2..ad4a50eb 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp @@ -179,7 +179,7 @@ InputBar::insertMimeData(const QMimeData *md) // NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste // local files, skip remote ones. [&md] { - for (const auto &u : md->urls()) { + for (auto &&u : md->urls()) { if (u.isLocalFile()) return true; }