zturner added inline comments.

> CrashReason.cpp:38
> +  stream << ")";
> +  str += stream.str();
> +}

Actually I'm not sure this is correct.  Since you initialize the stream with 
`str`, as soon as you call `stream.str()` it will flush everything to the 
underlying string.  Now `str` will contain the full formatted data.  Then you 
will call `str += str` and have a second copy of it.

I think you should just write `stream.flush();`

Can you check whether this works?

https://reviews.llvm.org/D25329



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to