Skip to content
Snippets Groups Projects
Commit 00d33cd7 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix llsd operator

parent 024cb63f
No related branches found
No related tags found
No related merge requests found
......@@ -870,7 +870,7 @@ void LLSD::assign(const LLSD& other) { Impl::assign(impl, other.impl); }
LLSD::LLSD(LLSD&& other) noexcept : impl(nullptr) { ALLOC_LLSD_OBJECT; Impl::move(impl, other.impl); }
void LLSD::assign(LLSD&& other) { Impl::move(impl, other.impl); }
LLSD& LLSD::operator=(LLSD&& other) noexcept { Impl::move(impl, other.impl); return *this; }
LLSD& LLSD::operator=(LLSD&& other) { Impl::move(impl, other.impl); return *this; }
void LLSD::clear() { Impl::assignUndefined(impl); }
......
......@@ -168,7 +168,7 @@ class LL_COMMON_API LLSD final
//@{
LLSD(LLSD&& other) noexcept;
void assign(LLSD&& other);
LLSD& operator=(LLSD&& other) noexcept;
LLSD& operator=(LLSD&& other);
//@}
void clear(); ///< resets to Undefined
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment