diff --git a/include/etl/tuple.h b/include/etl/tuple.h index 35559533..6f10acef 100644 --- a/include/etl/tuple.h +++ b/include/etl/tuple.h @@ -333,7 +333,7 @@ namespace etl etl::is_convertible::value, int> = 0> ETL_CONSTEXPR14 tuple(tuple&& other) - : base_type(etl::forward>(other.get_base())) + : base_type(etl::forward>(other.get_base())) , value(etl::forward(other.get_value())) { } @@ -347,7 +347,7 @@ namespace etl !etl::is_convertible::value, int> = 0> ETL_CONSTEXPR14 explicit tuple(tuple&& other) - : base_type(etl::forward>(other.get_base())) + : base_type(etl::forward>(other.get_base())) , value(etl::forward(other.get_value())) { } @@ -361,7 +361,7 @@ namespace etl etl::is_convertible::value, int> = 0> ETL_CONSTEXPR14 tuple(const tuple&& other) - : base_type(etl::forward>(other.get_base())) + : base_type(etl::forward>(other.get_base())) , value(etl::forward(other.get_value())) { } @@ -375,7 +375,7 @@ namespace etl !etl::is_convertible::value, int> = 0> ETL_CONSTEXPR14 explicit tuple(const tuple&& other) - : base_type(etl::forward>(other.get_base())) + : base_type(etl::forward>(other.get_base())) , value(etl::forward(other.get_value())) { }