From c2cc943a7f9f6075e7b62aca388ff8d10b0c5314 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sun, 18 Apr 2021 00:26:07 -0400 Subject: [PATCH] Fix unused variable warning from debug code in jellydoll color selection --- indra/newview/llvoavatar.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index eab9d9e2a7b..836d8e0fa47 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -11076,7 +11076,9 @@ void LLVOAvatar::calcMutedAVColor() { LLColor4 new_color(mMutedAVColor); std::string change_msg; +#if defined(COLORIZE_JELLYDOLLS) || defined(SHOW_DEBUG) LLUUID av_id(getID()); +#endif if (getVisualMuteSettings() == AV_DO_NOT_RENDER) { -- GitLab