Skip to content
Snippets Groups Projects
Commit c7616af6 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-447: Diagnostically try naively widening BugSplat metadata.

parent 869d2f1f
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,11 @@ namespace ...@@ -104,7 +104,11 @@ namespace
// specific wstringize() overload // specific wstringize() overload
inline std::basic_string<__wchar_t> wunder(const std::string& str) inline std::basic_string<__wchar_t> wunder(const std::string& str)
{ {
return wunder(wstringize(str)); // return wunder(wstringize(str));
// Is wstringize(const std::string&) doing the right thing? Try
// widening each character individually -- which works only for 8-bit
// characters, of course -- just diagnostically.
return { str.begin(), str.end() };
} }
// Irritatingly, MiniDmpSender::setCallback() is defined to accept a // Irritatingly, MiniDmpSender::setCallback() is defined to accept a
......
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