diff --git a/include/etl/span.h b/include/etl/span.h index a9d4d721..5e364b23 100644 --- a/include/etl/span.h +++ b/include/etl/span.h @@ -230,7 +230,7 @@ namespace etl /// From dynamic extent span. //************************************************************************* template - span(const etl::span& other, typename etl::enable_if::type* = 0) + ETL_CONSTEXPR14 span(const etl::span& other, typename etl::enable_if::type* = 0) : pbegin(other.data()) { ETL_ASSERT(other.size() == Extent, ETL_ERROR(span_size_mismatch));