diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2009-05-27 17:41:57 +0000 | 
|---|---|---|
| committer | Brad Kittenbrink <brad@lindenlab.com> | 2009-05-27 17:41:57 +0000 | 
| commit | 46e7bd31cd6a16ebce71007200bc5776caf12168 (patch) | |
| tree | e6f5d804ea0c7e6d43369e51adbaacce10a78582 | |
| parent | a81c084debb4075f36bacd59cbe332c2f0548d50 (diff) | |
Fix for mac build errors following r121524 commit for DEV-27646.
| -rw-r--r-- | indra/llcommon/llqueuedthread.h | 2 | ||||
| -rw-r--r-- | indra/llcommon/llsdserialize.h | 10 | 
2 files changed, 8 insertions, 4 deletions
| diff --git a/indra/llcommon/llqueuedthread.h b/indra/llcommon/llqueuedthread.h index b3cde22b40..8bfa5632a1 100644 --- a/indra/llcommon/llqueuedthread.h +++ b/indra/llcommon/llqueuedthread.h @@ -148,8 +148,6 @@ protected:  		}  	}; -    template class LL_COMMON_API std::set<QueuedRequest*, queued_request_less>; -  	//------------------------------------------------------------------------ diff --git a/indra/llcommon/llsdserialize.h b/indra/llcommon/llsdserialize.h index 4b32f0afcd..2f2b292189 100644 --- a/indra/llcommon/llsdserialize.h +++ b/indra/llcommon/llsdserialize.h @@ -638,9 +638,14 @@ protected:   *	params << "[{'version':i1}," << LLSDOStreamer<LLSDNotationFormatter>(sd)   *    << "]";   *  </code> + * + * *NOTE - formerly this class inherited from its template parameter Formatter, + * but all insnatiations passed in LLRefCount subclasses.  This conflicted with + * the auto allocation intended for this class template (demonstrated in the + * example above).  -brad   */  template <class Formatter> -class LLSDOStreamer : public Formatter +class LLSDOStreamer  {  public:  	/**  @@ -661,7 +666,8 @@ public:  		std::ostream& str,  		const LLSDOStreamer<Formatter>& formatter)  	{ -		formatter.format(formatter.mSD, str, formatter.mOptions); +		LLPointer<Formatter> f = new Formatter; +		f->format(formatter.mSD, str, formatter.mOptions);  		return str;  	} | 
