diff options
| author | Monty Brandenberg <monty@lindenlab.com> | 2012-06-12 19:46:19 -0400 | 
|---|---|---|
| committer | Monty Brandenberg <monty@lindenlab.com> | 2012-06-12 19:46:19 -0400 | 
| commit | c71e808a36adef2ced44caa03a668296a2e962ca (patch) | |
| tree | 83e134ad857275bd3846c851cc99ce29df4dba56 | |
| parent | 7adeb3923728ca84a309a6af141c148ce38066fc (diff) | |
Really need to figure out the 'static const' problem on Windows.
For now, workaround...
| -rw-r--r-- | indra/llcorehttp/_refcounted.cpp | 6 | 
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()  {} | 
