Fixed typos in rvalue constructor

This commit is contained in:
John Wellbelove 2021-01-21 11:42:27 +00:00
parent 503b990514
commit c3a055ea75

View File

@ -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_))
{