Skip to content

Commit

Permalink
[MISC] gcc-10.3 supports SEQAN3_WORKAROUND_GCC_99318 now
Browse files Browse the repository at this point in the history
  • Loading branch information
marehr committed May 10, 2021
1 parent 77c5e8a commit ff61cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/seqan3/core/platform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff61cb6

Please sign in to comment.