mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
AK: Make workaround for broken coroutine type deduction more specific
This bug was fixed on GCC trunk.
This commit is contained in:
parent
ba21a17b75
commit
3ead8e8f4f
1 changed files with 4 additions and 1 deletions
|
@ -165,7 +165,10 @@
|
|||
#ifdef AK_COMPILER_GCC
|
||||
// FIXME: Undefine once https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115851 is fixed.
|
||||
# define AK_COROUTINE_STATEMENT_EXPRS_BROKEN
|
||||
// FIXME: Undefine once https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112341 is fixed.
|
||||
#endif
|
||||
|
||||
#if defined(AK_COMPILER_GCC) && __GNUC__ < 15
|
||||
// Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112341 . See AK/Coroutine.h for more details.
|
||||
# define AK_COROUTINE_TYPE_DEDUCTION_BROKEN
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue