diff options
| author | Dave Parks <davep@lindenlab.com> | 2022-12-12 13:49:28 -0600 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2022-12-12 13:49:28 -0600 | 
| commit | 2ab424493f09ffcc58ad32922fb6ff52790de2ce (patch) | |
| tree | 43de9fcfa46274d21777eeccaa97a39ce14925f6 /indra | |
| parent | 9e1383f90d45622e0b9848be2608a4a6d71037dd (diff) | |
DRTVWR-559 Fix for windows build.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index be5af8240f..778acbd16f 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -4661,9 +4661,9 @@ U32 LLWindowWin32::getAvailableVRAMMegabytes()  #endif // LL_WINDOWS  inline LLWindowWin32::LLWindowWin32Thread::LLWindowWin32Thread() -    : ThreadPool("Window Thread", 1, MAX_QUEUE_SIZE) +    : LL::ThreadPool("Window Thread", 1, MAX_QUEUE_SIZE)  { -    ThreadPool::start(); +    LL::ThreadPool::start();  }  /** | 
