From d2129ceeb86ce906da3065e38f6251b1eb7fff56 Mon Sep 17 00:00:00 2001 From: Cinder <cinder@sdf.org> Date: Tue, 26 Jan 2016 22:50:24 -0700 Subject: [PATCH] and remove wstringize from llapp --- indra/llcommon/llapp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp index af5c0ab421..3cca74c092 100755 --- a/indra/llcommon/llapp.cpp +++ b/indra/llcommon/llapp.cpp @@ -357,9 +357,9 @@ void LLApp::setupErrorHandling(bool second_instance) LL_WARNS() << "adding breakpad exception handler" << LL_ENDL; std::wstring wpipe_name; - wpipe_name = mCrashReportPipeStr + wstringize(getPid()); + wpipe_name = mCrashReportPipeStr + std::to_wstring(getPid()); - const std::wstring wdump_path(wstringize(mDumpPath)); + const std::wstring wdump_path(std::to_wstring(mDumpPath)); int retries = 30; for (; retries > 0; --retries) -- GitLab