Made compiler detection more reliable and cleanup clang warnings

This commit is contained in:
Drake Arconis
2013-05-05 17:56:16 -07:00
parent a2df4b6693
commit 73b10e6b29
18 changed files with 21 additions and 54 deletions

View File

@@ -477,7 +477,7 @@ void LLTexLayerSet::asLLSD(LLSD& sd) const
LLSD layer_list_sd;
layer_list_t::const_iterator layer_iter = mLayerList.begin();
layer_list_t::const_iterator layer_end = mLayerList.end();
for(; layer_iter != layer_end; ++layer_iter);
for(; layer_iter != layer_end; ++layer_iter)
{
LLSD layer_sd;
//LLTexLayerInterface* layer = (*layer_iter);

View File

@@ -136,7 +136,10 @@ protected:
typedef std::map<S32, F32> param_map_t;
param_map_t mSavedVisualParamMap; // last saved version of visual params
public:
typedef std::map<S32, LLVisualParam *> visual_param_index_map_t;
protected:
visual_param_index_map_t mVisualParamIndexMap;
te_map_t mTEMap; // maps TE to LocalTextureObject