1
0
forked from boostorg/core

Merge branch 'develop' into feature/bit

This commit is contained in:
Peter Dimov
2022-09-21 21:41:43 +03:00
6 changed files with 53 additions and 55 deletions

View File

@@ -36,7 +36,8 @@ struct fclose_deleter
*/
void operator() (std::FILE* p) const BOOST_NOEXCEPT
{
std::fclose(p);
if (BOOST_LIKELY(!!p))
std::fclose(p);
}
};