From 8f02e90735a95353bc13af51a4d23389fb6e1737 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 25 Oct 2021 09:56:40 +0100 Subject: [PATCH] Experimental automatic builtins for algorithms --- include/etl/platform.h | 9 ++------- test/vs2019/etl.vcxproj.filters | 3 +++ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/include/etl/platform.h b/include/etl/platform.h index 1456b0f3..d37f1959 100644 --- a/include/etl/platform.h +++ b/include/etl/platform.h @@ -211,13 +211,8 @@ SOFTWARE. #define ETL_CONSTINIT #endif -#if !defined(ETL_USING_INITIALIZER_LIST) - #if ETL_CPP11_SUPPORTED && ETL_USING_STL && ETL_NOT_USING_STLPORT - #define ETL_USING_INITIALIZER_LIST 1 - #else - #define ETL_USING_INITIALIZER_LIST 0 - #endif -#endif +// Check for availability of certain builtins +#include "profiles/determine_builtin_support.h" // Check for availability of certain builtins #include "profiles/determine_builtin_support.h" diff --git a/test/vs2019/etl.vcxproj.filters b/test/vs2019/etl.vcxproj.filters index ab977681..14355af7 100644 --- a/test/vs2019/etl.vcxproj.filters +++ b/test/vs2019/etl.vcxproj.filters @@ -1161,6 +1161,9 @@ ETL\Containers + + ETL\Profiles + ETL\Utilities