summaryrefslogtreecommitdiff
path: root/indra/newview/lltexturefetch.h
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2022-11-11 17:07:52 -0800
committerBrad Kittenbrink <brad@lindenlab.com>2022-11-11 17:07:52 -0800
commit22f6adefb892ab83168e6236e2453b62314d0db6 (patch)
treea04d75a4f36aab8252f830203e6497a123903ded /indra/newview/lltexturefetch.h
parent6bc0614d717166e1e587012c3388445d662775a3 (diff)
DRTVWR-575 fix LLWorkerThread subclasses to be compatiblie with recent size_t changes in base class
Diffstat (limited to 'indra/newview/lltexturefetch.h')
-rw-r--r--indra/newview/lltexturefetch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltexturefetch.h b/indra/newview/lltexturefetch.h
index bf6732963f..e2d2aa365c 100644
--- a/indra/newview/lltexturefetch.h
+++ b/indra/newview/lltexturefetch.h
@@ -65,7 +65,7 @@ public:
class TFRequest;
// Threads: Tmain
- /*virtual*/ S32 update(F32 max_time_ms);
+ /*virtual*/ size_t update(F32 max_time_ms);
// called in the main thread after the TextureCacheThread shuts down.
// Threads: Tmain
@@ -137,7 +137,7 @@ public:
U32 getTotalNumHTTPRequests();
// Threads: T*
- S32 getPending();
+ size_t getPending();
// Threads: T*
void lockQueue() { mQueueMutex.lock(); }