forked from boostorg/unordered
Remove unnecessary forced inlining of bool conversion
This commit is contained in:
@ -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!();
|
||||
}
|
||||
|
@ -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!();
|
||||
}
|
||||
|
Reference in New Issue
Block a user