Skip to content

Commit

Permalink
feat: remove the copy ctor and assignment operator
Browse files Browse the repository at this point in the history
  • Loading branch information
drewr95 committed Dec 28, 2024
1 parent 99d7537 commit 5166016
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions include/etl/type_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ namespace etl
{
}

//*********************************************************************
ETL_CONSTEXPR type_def(const type_def& other)
: value(other.value)
{
}

//*********************************************************************
ETL_CONSTEXPR operator TValue() const
{
Expand Down Expand Up @@ -244,13 +238,6 @@ namespace etl
return *this;
}

//*********************************************************************
ETL_CONSTEXPR14 type_def& operator =(const type_def& rhs)
{
value = rhs.value;
return *this;
}

//*********************************************************************
TValue& get()
{
Expand Down

0 comments on commit 5166016

Please sign in to comment.