mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 19:15:41 +00:00
Make GenericResourceManager::setExpiryDelay final
This commit is contained in:
parent
4a46d772a1
commit
3202900fd3
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ namespace Resource
|
||||||
void clearCache() override { mCache->clear(); }
|
void clearCache() override { mCache->clear(); }
|
||||||
|
|
||||||
/// How long to keep objects in cache after no longer being referenced.
|
/// How long to keep objects in cache after no longer being referenced.
|
||||||
void setExpiryDelay(double expiryDelay) override { mExpiryDelay = expiryDelay; }
|
void setExpiryDelay(double expiryDelay) final { mExpiryDelay = expiryDelay; }
|
||||||
double getExpiryDelay() const { return mExpiryDelay; }
|
double getExpiryDelay() const { return mExpiryDelay; }
|
||||||
|
|
||||||
const VFS::Manager* getVFS() const { return mVFS; }
|
const VFS::Manager* getVFS() const { return mVFS; }
|
||||||
|
|
Loading…
Reference in a new issue