Merge branch 'feature/#465-harmonize-copy-ctor-and-assignment-op-for-etl--delegate' into development

This commit is contained in:
John Wellbelove 2021-11-15 11:11:01 +00:00
commit 572eedcf97

View File

@ -111,10 +111,7 @@ namespace etl
//*************************************************************************
// Copy constructor.
//*************************************************************************
ETL_CONSTEXPR14 delegate(const delegate& other)
: invocation(other.invocation)
{
}
ETL_CONSTEXPR14 delegate(const delegate& other) = default;
//*************************************************************************
// Construct from lambda or functor.