Implementing basic asset serialization

This commit is contained in:
Dynamitos
2023-02-13 14:56:13 +01:00
parent 9e1e4076f0
commit 48fa098546
82 changed files with 1834 additions and 423 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ public:
: node(i.node)
{
}
IteratorBase(IteratorBase&& i)
IteratorBase(IteratorBase&& i) noexcept
: node(std::move(i.node))
{
}
@@ -49,7 +49,7 @@ public:
}
return *this;
}
IteratorBase& operator=(IteratorBase&& other)
IteratorBase& operator=(IteratorBase&& other) noexcept
{
if(this != &other)
{