added tests for color fixed matrix move operator

This commit is contained in:
2024-09-02 13:57:30 +03:00
parent 9a3a4214b8
commit b78a2e2747
7 changed files with 138 additions and 5 deletions

View File

@@ -200,6 +200,9 @@ namespace omath
m_columns = other.m_columns;
m_data = std::move(other.m_data);
other.m_rows = 0.f;
other.m_columns = 0.f;
return *this;
}