AK: Use constexpr instead of consteval on OpenBSD

This commit is contained in:
nipos 2023-01-26 00:25:36 +01:00 committed by Andrew Kaster
parent e5dea00bb1
commit c31b547fae

View file

@ -28,8 +28,8 @@ namespace Detail {
class StringData;
}
// FIXME: Remove this when Apple Clang fully supports consteval.
#if defined(AK_OS_MACOS)
// FIXME: Remove this when Apple Clang and OpenBSD Clang fully supports consteval.
#if defined(AK_OS_MACOS) || defined(AK_OS_OPENBSD)
# define AK_SHORT_STRING_CONSTEVAL constexpr
#else
# define AK_SHORT_STRING_CONSTEVAL consteval