summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_thread.h
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-04-25 13:18:27 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-04-25 13:18:27 -0400
commit88bc54192fa274bb1617801e4aeddbbf4e9e7944 (patch)
treed72c7f65a8bae92accf7fc90f502408d5ea34889 /indra/llcorehttp/_thread.h
parentc09669da921f24e8e2693d8652fc56465d5fa19c (diff)
Get Mac building. Unused variable in boost and missing return
value which wasn't caught in other environments.
Diffstat (limited to 'indra/llcorehttp/_thread.h')
-rw-r--r--indra/llcorehttp/_thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/_thread.h b/indra/llcorehttp/_thread.h
index 5960f0dcdb..0937d698c7 100644
--- a/indra/llcorehttp/_thread.h
+++ b/indra/llcorehttp/_thread.h
@@ -91,7 +91,7 @@ public:
inline bool joinable() const
{
- mThread->joinable();
+ return mThread->joinable();
}
private: