From 1ff2ac48a09166f403d341a6833ea9dbe6fa9ae9 Mon Sep 17 00:00:00 2001 From: Nicky Date: Mon, 10 Oct 2016 00:59:54 +0200 Subject: [PATCH] Source change to make GCC happy. --- indra/llappearance/llavatarappearance.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/llappearance/llavatarappearance.cpp b/indra/llappearance/llavatarappearance.cpp index 3ac6dd7fd9..d963ab0205 100644 --- a/indra/llappearance/llavatarappearance.cpp +++ b/indra/llappearance/llavatarappearance.cpp @@ -718,7 +718,8 @@ BOOL LLAvatarAppearance::allocateCharacterJoints( S32 num ) if (mSkeleton.size() != num) { clearSkeleton(); - mSkeleton = avatar_joint_list_t(num,NULL); + // mSkeleton = avatar_joint_list_t(num,NULL); + mSkeleton = avatar_joint_list_t(num, static_cast< LLAvatarJoint*>( NULL )); mNumBones = num; }