Switch to SmallString::str from SmallString::c_str, and remove

SmallString::c_str.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2009-08-19 20:07:03 +00:00
parent 9472a9d650
commit dddfd34e32
5 changed files with 9 additions and 16 deletions

View File

@ -71,8 +71,8 @@ static void CrashHandler(void *Cookie) {
}
if (!TmpStr.empty()) {
__crashreporter_info__ = strdup(TmpStr.c_str());
errs() << __crashreporter_info__;
__crashreporter_info__ = strdup(std::string(TmpStr.str()).c_str());
errs() << TmpStr.str();
}
#endif