mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-17 01:16:21 +08:00
Fixed typos in rvalue constructor
This commit is contained in:
parent
503b990514
commit
c3a055ea75
@ -1271,7 +1271,7 @@ namespace etl
|
||||
|
||||
#if ETL_CPP11_SUPPORTED
|
||||
//*********************************
|
||||
unique_ptr(pointer pValue, typename etl::remove_reference<TDeleter>::type&& deleter) ETL_NOEXCEPT
|
||||
unique_ptr(pointer p_, typename etl::remove_reference<TDeleter>::type&& deleter_) ETL_NOEXCEPT
|
||||
: p(p_)
|
||||
, deleter(etl::move(deleter_))
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user