Merge branch 'feature/#1166-Feature-Request--implement-not_null' of https://github.com/ETLCPP/etl into feature/#1166-Feature-Request--implement-not_null

This commit is contained in:
John Wellbelove 2025-08-16 10:38:38 +01:00
commit 1963593159

View File

@ -281,7 +281,7 @@ namespace etl
//*********************************
underlying_type& underlying()
{
return u_ptr;
return etl::move(u_ptr);
}
//*********************************
@ -289,7 +289,7 @@ namespace etl
//*********************************
const underlying_type& underlying() const
{
return u_ptr;
return etl::move(u_ptr);
}
private: