Skip to content

Commit b92f058

Browse files
authored
Merge pull request #37167 from apple/locals-windows-fix
[TaskLocals] Windows: fix missing io.h
2 parents 7e4b66e + 5ff76c6 commit b92f058

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

stdlib/public/Concurrency/TaskLocal.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
#include <android/log.h>
2727
#endif
2828

29+
#if defined(_WIN32)
30+
#include <io.h>
31+
#endif
32+
2933
using namespace swift;
3034

3135
// =============================================================================

0 commit comments

Comments
 (0)