summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_refcounted.cpp
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-12 19:46:19 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-12 19:46:19 -0400
commitc71e808a36adef2ced44caa03a668296a2e962ca (patch)
tree83e134ad857275bd3846c851cc99ce29df4dba56 /indra/llcorehttp/_refcounted.cpp
parent7adeb3923728ca84a309a6af141c148ce38066fc (diff)
Really need to figure out the 'static const' problem on Windows.
For now, workaround...
Diffstat (limited to 'indra/llcorehttp/_refcounted.cpp')
-rw-r--r--indra/llcorehttp/_refcounted.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llcorehttp/_refcounted.cpp b/indra/llcorehttp/_refcounted.cpp
index 2c132e1b36..11d75fdf97 100644
--- a/indra/llcorehttp/_refcounted.cpp
+++ b/indra/llcorehttp/_refcounted.cpp
@@ -30,6 +30,12 @@
namespace LLCoreInt
{
+#if ! defined(WIN32)
+
+const S32 RefCounted::NOT_REF_COUNTED;
+
+#endif // ! defined(WIN32)
+
RefCounted::~RefCounted()
{}