From 80c3cb70d26be0c234f552642397f70567883b56 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 16 Dec 2024 06:25:55 -0600 Subject: [PATCH] Level2ProductView::Impl is not movable (thread pool is not movable) --- scwx-qt/source/scwx/qt/view/level2_product_view.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp index 16d3ab50..559fbc6c 100644 --- a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp +++ b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp @@ -114,8 +114,8 @@ public: Impl(const Impl&) = delete; Impl& operator=(const Impl&) = delete; - Impl(Impl&&) noexcept = default; - Impl& operator=(Impl&&) noexcept = default; + Impl(Impl&&) noexcept = delete; + Impl& operator=(Impl&&) noexcept = delete; void ComputeCoordinates( const std::shared_ptr& radarData,