diff options
| author | Loren Shih <seraph@lindenlab.com> | 2010-06-03 14:54:51 -0400 | 
|---|---|---|
| committer | Loren Shih <seraph@lindenlab.com> | 2010-06-03 14:54:51 -0400 | 
| commit | 158e46969f955ef6fe87eeeae969b80c5f06aa36 (patch) | |
| tree | 469588b6f5b0c6ee016aa065d06efb139ff221aa /indra/newview | |
| parent | 28b71c34020cadaa62603e03e6815008aaceb210 (diff) | |
Fix for Linux confusion between ">>" and "> >"
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lltexlayer.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/lltexlayer.h b/indra/newview/lltexlayer.h index 615de661af..2ee609fe60 100644 --- a/indra/newview/lltexlayer.h +++ b/indra/newview/lltexlayer.h @@ -322,9 +322,9 @@ protected:  	BOOL				loadImageRaw(const std::string& file_name, LLImageRaw* image_raw);  private:  	LLStringTable 		mImageNames; -	typedef std::map<const char*, LLPointer<LLViewerTexture>> texture_map_t; +	typedef std::map<const char*, LLPointer<LLViewerTexture> > texture_map_t;  	texture_map_t 		mStaticImageList; -	typedef std::map<const char*, LLPointer<LLImageTGA>> image_tga_map_t; +	typedef std::map<const char*, LLPointer<LLImageTGA> > image_tga_map_t;  	image_tga_map_t 	mStaticImageListTGA;  	S32 				mGLBytes;  	S32 				mTGABytes; | 
