From f1426632ca2e5d5bcf98d6159f7c42421271ac15 Mon Sep 17 00:00:00 2001 From: Zhe Feng Date: Sat, 8 Aug 2026 12:35:39 +0800 Subject: [PATCH] Fix conditional check for header inclusion --- pkgs/b/boost-ext.ut.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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