From 22bf2daaf75fa595f6ece491bc7b69438e0b59c9 Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 12 Mar 2024 21:02:28 +0100 Subject: Core/Utils: Added missing member access in unique_trackable_ptr move assignment operator (cherry picked from commit 6b255efb2dae561224b6ac1c02f4e6377ea39098) --- src/common/Utilities/UniqueTrackablePtr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/common/Utilities/UniqueTrackablePtr.h b/src/common/Utilities/UniqueTrackablePtr.h index b3a747d4b0f..b315bbd6437 100644 --- a/src/common/Utilities/UniqueTrackablePtr.h +++ b/src/common/Utilities/UniqueTrackablePtr.h @@ -61,7 +61,7 @@ public: unique_trackable_ptr& operator=(unique_trackable_ptr&& other) noexcept { - _ptr = std::move(other); + _ptr = std::move(other._ptr); return *this; } -- cgit v1.2.3