fix std::copy() using

This commit is contained in:
Ivan Morozov
2022-07-25 14:15:35 +03:00
parent 42b155cd92
commit bbb8b19ee3
3 changed files with 5 additions and 5 deletions

View File

@ -204,8 +204,8 @@ void DirectoryEntry::AssignValueTo(RedBlackTree::PIRBNode other)
d->SetEntryName(this->GetEntryName());
std::copy(creationDate, creationDate+8, d->creationDate);
std::copy(modifyDate, modifyDate+8, d->modifyDate);
d->creationDate = creationDate;
d->modifyDate = modifyDate;
d->size = this->size;
d->startSetc = this->startSetc;