The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #14429 from MisterDA/cxx-unixsupport-stdatomic

`unixsupport.h`: fix C++ missing `std::` namespace on `atomic_int`

authored by

David Allsopp and committed by
GitHub
0e8a8eb6 5b902eb9

+4 -1
+1 -1
Changes
··· 560 560 - #14332: Fix missing TSan instrumentation in subexpressions 561 561 (Vincent Laviron, review by Gabriel Scherer and Olivier Nicole) 562 562 563 - - #14370: Fix headers for C++ inclusion. 563 + - #14370, #14429: Fix headers for C++ inclusion. 564 564 (Antonin Décimo, review by Gabriel Scherer) 565 565 566 566 - #14417: Fix issue with nested packs on macOS.
+3
otherlibs/unix/caml/unixsupport.h
··· 44 44 SOCKET socket; 45 45 } fd; /* Real windows handle */ 46 46 enum { KIND_HANDLE, KIND_SOCKET } kind; 47 + #ifdef __cplusplus 48 + std:: 49 + #endif 47 50 atomic_int crt_fd; /* C runtime descriptor */ 48 51 unsigned int flags_fd; /* See FLAGS_FD_* */ 49 52 };