Skip to content
Snippets Groups Projects
Commit d2129cee authored by Cinder's avatar Cinder
Browse files

and remove wstringize from llapp

parent baf76694
No related branches found
No related tags found
No related merge requests found
...@@ -357,9 +357,9 @@ void LLApp::setupErrorHandling(bool second_instance) ...@@ -357,9 +357,9 @@ void LLApp::setupErrorHandling(bool second_instance)
LL_WARNS() << "adding breakpad exception handler" << LL_ENDL; LL_WARNS() << "adding breakpad exception handler" << LL_ENDL;
std::wstring wpipe_name; 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; int retries = 30;
for (; retries > 0; --retries) for (; retries > 0; --retries)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment