fix(Core/Common): add missing import (#19535)

* fix(Core/Common): add missing import

* chore: fix mistake
This commit is contained in:
Francesco Borzì
2024-07-31 09:10:12 +02:00
committed by GitHub
parent 02a05fbd4c
commit 8cfb338328
2 changed files with 2 additions and 1 deletions

View File

@@ -76,7 +76,7 @@ DBCFile::~DBCFile()
delete [] data;
}
DBCFile::Record DBCFile::getRecord(std::std::size_t id)
DBCFile::Record DBCFile::getRecord(std::size_t id)
{
assert(data);
return Record(*this, data + id * recordSize);