From 14f2c5bda24ae2a43fb7f7a69fdb26252b599b1d Mon Sep 17 00:00:00 2001 From: m-aXimilian Date: Tue, 24 Jun 2025 23:14:46 +0200 Subject: [PATCH] RVO --- src/AppGLFW.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppGLFW.cpp b/src/AppGLFW.cpp index 61abe0b..86c7a25 100644 --- a/src/AppGLFW.cpp +++ b/src/AppGLFW.cpp @@ -208,6 +208,6 @@ void pixelarium::ui::AppGLFW::LoadImageProt() { this->logger_.Debug(std::format("{}: Creating image {}", __FUNCTION__, p)); - image_view_model_->AddImage(std::move(std::make_unique(p))); + image_view_model_->AddImage(std::make_unique(p)); } }