You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guava defines a bool type in the obvious way, but the C23 standard now also defines bool. This leads to a build failure in -std=c23 mode that will happen by default in the next version of GCC, so it would be good to either append std=c17 to the build, or #ifdef around the bool type before then.
The text was updated successfully, but these errors were encountered:
Original report: https://bugs.gentoo.org/944356
Guava defines a
bool
type in the obvious way, but the C23 standard now also definesbool
. This leads to a build failure in-std=c23
mode that will happen by default in the next version of GCC, so it would be good to either appendstd=c17
to the build, or#ifdef
around the bool type before then.The text was updated successfully, but these errors were encountered: