From ff65c753d6a7218e296c49e007af38424236a535 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 18 Apr 2026 17:13:43 +0200 Subject: [PATCH] =?UTF-8?q?Actually=20use=20ETL=5FUSE=5FBUILTIN=5FMEM=5FFU?= =?UTF-8?q?NCTIONS=20to=20decide=20about=20macro=20defi=E2=80=A6=20(#1398)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Print test names at test time (#1343) * Fix operator| conflict with std::ranges (#1395) * Actually use ETL_USE_BUILTIN_MEM_FUNCTIONS to decide about macro definitions --------- Co-authored-by: John Wellbelove Co-authored-by: John Wellbelove --- include/etl/profiles/determine_builtin_support.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/etl/profiles/determine_builtin_support.h b/include/etl/profiles/determine_builtin_support.h index b048922e..843a8741 100644 --- a/include/etl/profiles/determine_builtin_support.h +++ b/include/etl/profiles/determine_builtin_support.h @@ -60,7 +60,10 @@ SOFTWARE. #if !defined(ETL_USING_BUILTIN_IS_CONSTANT_EVALUATED) #define ETL_USING_BUILTIN_IS_CONSTANT_EVALUATED 1 #endif +#endif +#if defined(ETL_USE_BUILTIN_MEM_FUNCTIONS) // Set all of them to be true if not + // already defined #if !defined(ETL_USING_BUILTIN_MEMCPY) #define ETL_USING_BUILTIN_MEMCPY 1 #endif