diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2022-11-11 17:07:52 -0800 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-11-11 17:07:52 -0800 |
commit | 22f6adefb892ab83168e6236e2453b62314d0db6 (patch) | |
tree | a04d75a4f36aab8252f830203e6497a123903ded /indra/newview/lltexturecache.h | |
parent | 6bc0614d717166e1e587012c3388445d662775a3 (diff) |
DRTVWR-575 fix LLWorkerThread subclasses to be compatiblie with recent size_t changes in base class
Diffstat (limited to 'indra/newview/lltexturecache.h')
-rw-r--r-- | indra/newview/lltexturecache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturecache.h b/indra/newview/lltexturecache.h index e1c752b58e..b6ace467c7 100644 --- a/indra/newview/lltexturecache.h +++ b/indra/newview/lltexturecache.h @@ -113,7 +113,7 @@ public: LLTextureCache(bool threaded); ~LLTextureCache(); - /*virtual*/ S32 update(F32 max_time_ms); + /*virtual*/ size_t update(F32 max_time_ms); void purgeCache(ELLPath location, bool remove_dir = true); void setReadOnly(BOOL read_only) ; |