Skip to content

Commit f748cd3

Browse files
committed
FastPathAlloc: Skip if below clang 18.1.x
1 parent f7a38aa commit f748cd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Test/FastPathAlloc.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if __clang_major__ < 18
1+
#if __clang_major__ < 18 || (__clang_major__ == 18 && __clang_minor__ < 1)
22
// Skip this test if clang is too old to support it.
33
int main(void)
44
{

0 commit comments

Comments
 (0)