Fixed the build error using gcc 13 40/294940/2
authorwchang kim <wchang.kim@samsung.com>
Thu, 29 Jun 2023 04:58:16 +0000 (13:58 +0900)
committerwchang kim <wchang.kim@samsung.com>
Mon, 3 Jul 2023 05:16:12 +0000 (14:16 +0900)
Change-Id: Iafd3394deeae0ad6ddbf97c7b9fa93d5f578326c

tizen-cpp/app-core-ui-cpp/app_core_ui_thread_base.cc

index 67bd5bf390f91df90466e9323910699d0404acbb..f4f89c3fe23762a200a4567777ae8a94b6180273 100644 (file)
@@ -84,7 +84,7 @@ class AppCoreUiThreadBase::Impl {
     guint source = GLib::IdleAdd(context_,
         [](gpointer user_data) {
           auto* impl = static_cast<AppCoreUiThreadBase::Impl*>(user_data);
-          auto action = std::move(impl->queue_.WaitAndPop());
+          auto action = impl->queue_.WaitAndPop();
           action();
           return G_SOURCE_REMOVE;
         }, this);