Updated Logo

This commit is contained in:
2025-06-07 12:00:05 -04:00
parent d3eba6560d
commit 58bac4e260
10 changed files with 241 additions and 66 deletions

View File

@@ -93,10 +93,10 @@
// Difficult and Inconsistent without intrinsics
#if __has_builtin(__is_constructible)
# define FENNEC_BUILTIN_CAN_CONSTRUCT 1
# define FENNEC_BUILTIN_CAN_CONSTRUCT(type, args...) __is_constructible(type, args)
# define FENNEC_HAS_BUILTIN_IS_CONSTRUCTIBLE 1
# define FENNEC_BUILTIN_IS_CONSTRUCTIBLE(type, ...) __is_constructible(type, __VA_ARGS__)
#else
# define FENNEC_HAS_BUILTIN_CAN_CONSTRUCT 0
# define FENNEC_HAS_BUILTIN_IS_CONSTRUCTIBLE 0
#endif