diff --git a/pkgs/b/boost-ext.ut.lua b/pkgs/b/boost-ext.ut.lua index 458cef7..f1b8b44 100644 --- a/pkgs/b/boost-ext.ut.lua +++ b/pkgs/b/boost-ext.ut.lua @@ -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() or __has_include()) +#if not (__has_include() and __has_include()) using size_t = std::size_t; #endif