From b2b24cee7ac642b766fa76ed44f46292594f70bb Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Thu, 21 Feb 2013 01:11:03 +0100 Subject: [PATCH] Compile fix --- indra/newview/llvoavatarself.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index a4ab27f8a..590829858 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -2358,7 +2358,8 @@ void LLVOAvatarSelf::sendViewerAppearanceChangeMetrics() by_fields.push_back("is_using_server_bakes"); by_fields.push_back("is_self"); by_fields.push_back("central_bake_version"); - LLSD summary = summarize_by_buckets(mPendingTimerRecords, by_fields, std::string("elapsed")); + std::string val = "elapsed"; + LLSD summary = summarize_by_buckets(mPendingTimerRecords, by_fields, val); msg["timers"] = summary; mPendingTimerRecords.clear();