diff options
| author | Rye <rye@alchemyviewer.org> | 2025-11-27 11:41:03 -0500 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-11-27 22:14:23 +0200 |
| commit | 0ea816a6c26e17bf0a2ee8274363837d4bd0ef94 (patch) | |
| tree | 204f2ae97a2bee4252bdd2e9ed885b654d97c73d /indra/llcorehttp/_httpservice.h | |
| parent | 0fa5991d067304d103d8bd18702e3e8806de07e3 (diff) | |
Replace dependency on boost thread with std and change HttpService to use a similar thread shutdown mechanism to LLThread
Diffstat (limited to 'indra/llcorehttp/_httpservice.h')
| -rw-r--r-- | indra/llcorehttp/_httpservice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/_httpservice.h b/indra/llcorehttp/_httpservice.h index 13eb034f0e..bdf03f5227 100644 --- a/indra/llcorehttp/_httpservice.h +++ b/indra/llcorehttp/_httpservice.h @@ -218,7 +218,7 @@ protected: static volatile EState sState; HttpRequestQueue * mRequestQueue; // Refcounted LLAtomicU32 mExitRequested; - LLCoreInt::HttpThread * mThread; + std::unique_ptr<LLCoreInt::HttpThread> mThread; // === working-thread-only data === HttpPolicy * mPolicy; // Simple pointer, has ownership |
