summaryrefslogtreecommitdiff
path: root/indra/llmessage/llproxy.h
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2019-01-15 18:31:17 +0200
committerandreykproductengine <andreykproductengine@lindenlab.com>2019-01-15 18:31:17 +0200
commitfa15830e02ed249186625e845e2ac19749d10193 (patch)
tree645e4916d97b28f678ca57810e9ecc19b5dd551b /indra/llmessage/llproxy.h
parent346fc435f1b12e47b8bf51d15c70ceca4615de41 (diff)
SL-10291 Replace apr_atomic with standard C++11 functionality
Diffstat (limited to 'indra/llmessage/llproxy.h')
-rw-r--r--indra/llmessage/llproxy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llproxy.h b/indra/llmessage/llproxy.h
index 688dff7c83..87891901ad 100644
--- a/indra/llmessage/llproxy.h
+++ b/indra/llmessage/llproxy.h
@@ -298,7 +298,7 @@ private:
private:
// Is the HTTP proxy enabled? Safe to read in any thread, but do not write directly.
// Instead use enableHTTPProxy() and disableHTTPProxy() instead.
- mutable LLAtomic32<bool> mHTTPProxyEnabled;
+ mutable LLAtomicBool mHTTPProxyEnabled;
// Mutex to protect shared members in non-main thread calls to applyProxySettings().
mutable LLMutex mProxyMutex;