Fixed #3185 (Add three more exit functions)

This commit is contained in:
Thomas Jarosch 2011-10-23 12:23:53 +02:00 committed by Daniel Marjamäki
parent 9a1b195d79
commit 6047a28902
1 changed files with 3 additions and 0 deletions

View File

@ -559,6 +559,9 @@ void CheckMemoryLeakInFunction::parse_noreturn()
noreturn.insert("verr");
noreturn.insert("errx");
noreturn.insert("verrx");
noreturn.insert("ExitProcess");
noreturn.insert("ExitThread");
noreturn.insert("pthread_exit");
std::list<Scope>::const_iterator scope;