mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-26 20:38:45 +08:00
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:
commit
1963593159
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user