Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] gcc-10.3 supports SEQAN3_WORKAROUND_GCC_99318 now #2626

Merged
merged 1 commit into from
May 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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