Merge branch 'hotfix/add-deleter-constructor-to-unique-ptr' into development

This commit is contained in:
John Wellbelove 2021-01-21 18:29:55 +00:00
commit cda53ca500

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