From fa10567482dd3168d0fc631a4351446a3472c958 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sat, 4 Oct 2025 08:02:17 +0100 Subject: [PATCH] Restore ETL_NOEXCEPT_FROM missing from merges --- include/etl/platform.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/etl/platform.h b/include/etl/platform.h index 5e239aa4..a4710d09 100644 --- a/include/etl/platform.h +++ b/include/etl/platform.h @@ -344,9 +344,11 @@ SOFTWARE. #if ETL_USING_EXCEPTIONS #define ETL_NOEXCEPT noexcept #define ETL_NOEXCEPT_EXPR(...) noexcept(__VA_ARGS__) + #define ETL_NOEXCEPT_FROM(x) noexcept(noexcept(x)) #else #define ETL_NOEXCEPT #define ETL_NOEXCEPT_EXPR(...) + #define ETL_NOEXCEPT_FROM(x) #endif #else #define ETL_CONSTEXPR