From 516601607a0abc36ab142f3d9f3997b9c8add32b Mon Sep 17 00:00:00 2001 From: Drew Rife Date: Sat, 28 Dec 2024 07:09:29 -0500 Subject: [PATCH] feat: remove the copy ctor and assignment operator --- include/etl/type_def.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/include/etl/type_def.h b/include/etl/type_def.h index c124aa7e1..b864a3f43 100644 --- a/include/etl/type_def.h +++ b/include/etl/type_def.h @@ -69,12 +69,6 @@ namespace etl { } - //********************************************************************* - ETL_CONSTEXPR type_def(const type_def& other) - : value(other.value) - { - } - //********************************************************************* ETL_CONSTEXPR operator TValue() const { @@ -244,13 +238,6 @@ namespace etl return *this; } - //********************************************************************* - ETL_CONSTEXPR14 type_def& operator =(const type_def& rhs) - { - value = rhs.value; - return *this; - } - //********************************************************************* TValue& get() {