Added all tests and minor fixes

This commit is contained in:
Pesc0
2023-03-19 02:55:24 +01:00
parent 88a06ce6d5
commit dce458d1e8
3 changed files with 82 additions and 13 deletions

View File

@@ -33,13 +33,12 @@
using namespace Data;
void MappedName::compact() const
void MappedName::compact()
{
auto self = const_cast<MappedName*>(this);
if (this->raw) {
self->data = QByteArray(self->data.constData(), self->data.size());
self->raw = false;
this->data = QByteArray(this->data.constData(), this->data.size());
this->raw = false;
}
#if 0