Code cleanup: remove explicit flush() in favor of using the ostream's str()

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105657 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jordy Rose 2010-06-08 22:59:01 +00:00
Родитель 605fa8fe51
Коммит 3104124fda
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -398,8 +398,7 @@ void MallocChecker::ReportBadFree(CheckerContext &C, SVal ArgVal,
os << "not memory allocated by malloc()";
}
os.flush();
EnhancedBugReport *R = new EnhancedBugReport(*BT_BadFree, buf.str(), N);
EnhancedBugReport *R = new EnhancedBugReport(*BT_BadFree, os.str(), N);
R->addRange(range);
C.EmitReport(R);
}