From 79886ecc89c814af282691c0bbc60d07f02a9503 Mon Sep 17 00:00:00 2001 From: Almamu Date: Fri, 12 Sep 2025 03:30:21 +0200 Subject: [PATCH] chore: remove empty lines --- src/WallpaperEngine/Input/MouseInput.h | 1 - src/WallpaperEngine/Render/TextureCache.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/WallpaperEngine/Input/MouseInput.h b/src/WallpaperEngine/Input/MouseInput.h index d13811c..3985f52 100644 --- a/src/WallpaperEngine/Input/MouseInput.h +++ b/src/WallpaperEngine/Input/MouseInput.h @@ -33,6 +33,5 @@ class MouseInput { * @return The status of the mouse's right click */ [[nodiscard]] virtual MouseClickStatus rightClick () const = 0; - }; } // namespace WallpaperEngine::Input diff --git a/src/WallpaperEngine/Render/TextureCache.cpp b/src/WallpaperEngine/Render/TextureCache.cpp index a28659a..a2aa139 100644 --- a/src/WallpaperEngine/Render/TextureCache.cpp +++ b/src/WallpaperEngine/Render/TextureCache.cpp @@ -16,7 +16,6 @@ using namespace WallpaperEngine::Data::Parsers; TextureCache::TextureCache (RenderContext& context) : Helpers::ContextAware (context) {} std::shared_ptr TextureCache::resolve (const std::string& filename) { - if (const auto found = this->m_textureCache.find (filename); found != this->m_textureCache.end ()) return found->second;