fix build

This commit is contained in:
andrew (from workstation) 2020-05-20 18:40:51 +02:00
parent 4ffd5c8c70
commit ba65f0d2c2

View File

@ -40,8 +40,8 @@ class FileId {
return id; return id;
} }
int32 get() { int32 get() const {
time_ = std::time(nullptr); const_cast<FileId*>(this)->time_ = std::time(nullptr);
return id; return id;
} }