2 TODOs are fixed

This commit is contained in:
Daniel Marjamäki 2018-03-19 11:02:58 +01:00
parent 1ae75303a7
commit b10dd5d21e
1 changed files with 2 additions and 2 deletions

View File

@ -3039,13 +3039,13 @@ void ignoredReturnValue_abs(int i)
void nullPointer_ifstream_read(std::ifstream &f)
{
// TODO cppcheck-suppress nullPointer
// cppcheck-suppress nullPointer
f.read(NULL, 10);
}
void nullPointer_istream_read(std::istream &f)
{
// TODO cppcheck-suppress nullPointer
// cppcheck-suppress nullPointer
f.read(NULL, 10);
}