Attempted fixes for MacOS compilation

This commit is contained in:
John Wellbelove 2025-09-04 14:26:01 +01:00
parent 2d1af2dfb6
commit 73ae8f4d85
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ namespace
return (lhs.k == rhs.k);
}
#if !defined(ETL_DEVELOPMENT_OS_APPLE)
#if !defined(ETL_NOT_USING_CPP23)
// Equality operator for Key != Key
constexpr bool operator !=(const Key& lhs, const Key& rhs) noexcept
{

View File

@ -86,7 +86,7 @@ namespace
return (lhs.k == rhs.k);
}
#if !defined(ETL_DEVELOPMENT_OS_APPLE)
#if !defined(ETL_NOT_USING_CPP23)
// Equality operator for Key != Key
constexpr bool operator !=(const Key& lhs, const Key& rhs) noexcept
{

View File

@ -88,7 +88,7 @@ namespace
return (lhs.k == rhs.k);
}
#if !defined(ETL_DEVELOPMENT_OS_APPLE)
#if ETL_NOT_USING_CPP23
// Equality operator for Key != Key
constexpr bool operator !=(const Key& lhs, const Key& rhs) noexcept
{