fix: ASSUME not defined if unavailable

This commit is contained in:
2026-01-22 15:39:02 +01:00
parent 0d59153a58
commit 94f4688ba6

View File

@@ -63,6 +63,8 @@
#if __has_attribute(__assume__) #if __has_attribute(__assume__)
#define ASSUME(args) __attribute__((__assume__ args)) #define ASSUME(args) __attribute__((__assume__ args))
#else
#define ASSUME(args)
#endif #endif
#endif #endif