From ea09c5ee8d2ac8c6a5bcf7a29848aa40069002ca Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 11 Jul 2025 11:45:05 +0100 Subject: [PATCH] Fixed declaration of etl::const_multiset_ext template deduction guides. --- include/etl/const_multiset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/etl/const_multiset.h b/include/etl/const_multiset.h index ee618480..cc605b40 100644 --- a/include/etl/const_multiset.h +++ b/include/etl/const_multiset.h @@ -486,10 +486,10 @@ namespace etl //************************************************************************* #if ETL_USING_CPP17 template - const_multiset_ext(const etl::span&) -> const_multiset_ext; + const_multiset_ext(const etl::span&) -> const_multiset_ext; template - const_multiset_ext(const TElements(&)[N]) -> const_multiset_ext; + const_multiset_ext(const TElements(&)[N]) -> const_multiset_ext; #endif //*************************************************************************