зеркало из https://github.com/microsoft/clang-1.git
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:
Родитель
605fa8fe51
Коммит
3104124fda
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче