diff options
Diffstat (limited to 'indra')
| -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;  	} | 
