Merge branch 'development' into issue/Fix-signed/unsigned-warnings-in-VS2022

This commit is contained in:
John Wellbelove 2026-07-26 20:30:58 +01:00 committed by GitHub
commit fecd601ea6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,7 +59,7 @@ namespace etl
// Convertible to any type of null non-member pointer. // Convertible to any type of null non-member pointer.
template <class T> template <class T>
operator T*() const ETL_CONSTEXPR operator T*() const ETL_NOEXCEPT
{ {
return 0; return 0;
} }
@ -74,7 +74,7 @@ namespace etl
/// A null option. /// A null option.
///\ingroup utilities ///\ingroup utilities
//***************************************************************************** //*****************************************************************************
const nullopt_t nullopt = {}; ETL_INLINE_VAR ETL_CONSTANT nullopt_t nullopt = {};
//*************************************************************************** //***************************************************************************
/// Exception for optional. /// Exception for optional.