Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/b/boost-ext.ut.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export import std;
// MinGW GCC 16.1 has no unqualified ::size_t for ut.hpp's uses (ut.hpp:1916
// et al), and `export import std;` alone does not expose std::size_t under
// the plain name on that toolchain. Module-local alias, never exported.
#if not (__has_include(<unistd.h>) or __has_include(<sys/wait.h>))
#if not (__has_include(<unistd.h>) and __has_include(<sys/wait.h>))
using size_t = std::size_t;
#endif

Expand Down
Loading