aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-03-12 21:02:28 +0100
committerShauren <shauren.trinity@gmail.com>2024-03-13 22:12:54 +0100
commit9ebf232d7e7dd5df4f635b2573b03c21b277225b (patch)
tree240a8274dbf4a6eec981a38662cf3e79c5359f9a
parent92547f4b3154dc3769f1f5d9d50b92ee19788c9e (diff)
Core/Utils: Added missing member access in unique_trackable_ptr move assignment operator
(cherry picked from commit 6b255efb2dae561224b6ac1c02f4e6377ea39098)
-rw-r--r--src/common/Utilities/UniqueTrackablePtr.h2
1 files changed, 1 insertions, 1 deletions
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;
}