From: wchang kim Date: Thu, 29 Jun 2023 04:58:16 +0000 (+0900) Subject: Fixed the build error using gcc 13 X-Git-Tag: accepted/tizen/unified/20230705.063721~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5d754078fe58312947e5be03f384f58532840532;p=platform%2Fcore%2Fappfw%2Fapp-core.git Fixed the build error using gcc 13 Change-Id: Iafd3394deeae0ad6ddbf97c7b9fa93d5f578326c --- diff --git a/tizen-cpp/app-core-ui-cpp/app_core_ui_thread_base.cc b/tizen-cpp/app-core-ui-cpp/app_core_ui_thread_base.cc index 67bd5bf..f4f89c3 100644 --- a/tizen-cpp/app-core-ui-cpp/app_core_ui_thread_base.cc +++ b/tizen-cpp/app-core-ui-cpp/app_core_ui_thread_base.cc @@ -84,7 +84,7 @@ class AppCoreUiThreadBase::Impl { guint source = GLib::IdleAdd(context_, [](gpointer user_data) { auto* impl = static_cast(user_data); - auto action = std::move(impl->queue_.WaitAndPop()); + auto action = impl->queue_.WaitAndPop(); action(); return G_SOURCE_REMOVE; }, this);