Skip to content

Commit

Permalink
Merge pull request #2626 from marehr/remove_workarounds3
Browse files Browse the repository at this point in the history
[MISC] gcc-10.3 supports SEQAN3_WORKAROUND_GCC_99318 now
  • Loading branch information
eseiler authored May 11, 2021
2 parents 4f36e06 + ff61cb6 commit adc0324
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

1 comment on commit adc0324

@vercel
Copy link

@vercel vercel bot commented on adc0324 May 11, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.