From ff61cb64effe2c61bc65e0380256dcd87acee353 Mon Sep 17 00:00:00 2001 From: marehr Date: Tue, 11 May 2021 01:27:31 +0200 Subject: [PATCH] [MISC] gcc-10.3 supports SEQAN3_WORKAROUND_GCC_99318 now --- include/seqan3/core/platform.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/seqan3/core/platform.hpp b/include/seqan3/core/platform.hpp index 263eed32d3..47059cfb40 100644 --- a/include/seqan3/core/platform.hpp +++ b/include/seqan3/core/platform.hpp @@ -333,8 +333,8 @@ #endif //!\brief See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99318 -#ifndef SEQAN3_WORKAROUND_GCC_99318 // not yet fixed, this is a regression since gcc-10 -# if defined(__GNUC__) && (__GNUC__ >= 10) +#ifndef SEQAN3_WORKAROUND_GCC_99318 // fixed since gcc10.3 +# if defined(__GNUC__) && (__GNUC__ == 10 && __GNUC_MINOR__ < 3) # define SEQAN3_WORKAROUND_GCC_99318 1 # else # define SEQAN3_WORKAROUND_GCC_99318 0