Fix 'function uses ‘auto’ type specifier without trailing return type' spam in gcc due to accidentally using c++14 syntax.

This commit is contained in:
Shyotl
2018-02-08 03:18:09 -06:00
parent 05b8e08ee8
commit d46f96a8d6

View File

@@ -1100,7 +1100,7 @@ protected: // Shared with LLVOAvatarSelf
public:
typedef std::array<F32, LL_MAX_JOINTS_PER_MESH_OBJECT * 12> rigged_matrix_array_t;
typedef std::vector<std::pair<LLUUID, std::pair<U32, rigged_matrix_array_t> > > rigged_transformation_cache_t;
auto& getRiggedMatrixCache()
rigged_transformation_cache_t& getRiggedMatrixCache()
{
return mRiggedMatrixDataCache;
}