Remove unnecessary forced inlining of bool conversion

This commit is contained in:
Christian Mazakas
2023-09-29 10:52:34 -07:00
parent c37d9a3bf1
commit 554ce65a69
2 changed files with 2 additions and 2 deletions

View File

@ -2252,7 +2252,7 @@ namespace boost {
allocator_type get_allocator() const { return *alloc_; }
BOOST_FORCEINLINE explicit operator bool() const noexcept
explicit operator bool() const noexcept
{
return !this->operator!();
}

View File

@ -1875,7 +1875,7 @@ namespace boost {
allocator_type get_allocator() const { return *alloc_; }
BOOST_FORCEINLINE explicit operator bool() const noexcept
explicit operator bool() const noexcept
{
return !this->operator!();
}