Don't rely on argument dependent lookup

This commit is contained in:
Raoul Wols 2021-07-01 12:07:43 +02:00
parent ac91e954c2
commit 3965739ccb
No known key found for this signature in database
GPG Key ID: 9FFE06A0F6AAA2DF
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Array::Array(InBuffer &frame)
charsToRead -= (uint32_t)field->size();
// add the additional field
_fields.push_back(move(field));
_fields.push_back(std::move(field));
}
}

View File

@ -28,7 +28,7 @@ Table::Table(InBuffer &frame)
if (!field) continue;
// add field
_fields[name] = move(field);
_fields[name] = std::move(field);
// subtract size
bytesToRead -= (uint32_t)field->size();