From 556a529c382309154d2931230f40cf1785b52d29 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 21 Jul 2020 09:58:14 +0100 Subject: [PATCH] Changed some functions to ETL_CONSTEXPR14 --- include/etl/span.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/span.h b/include/etl/span.h index 2f4f5932..c66ab30d 100644 --- a/include/etl/span.h +++ b/include/etl/span.h @@ -234,7 +234,7 @@ namespace etl //************************************************************************* /// Assign from a span. //************************************************************************* - ETL_CONSTEXPR span& operator =(const span& other) ETL_NOEXCEPT + ETL_CONSTEXPR14 span& operator =(const span& other) ETL_NOEXCEPT { mbegin = other.mbegin; mend = other.mend;