From 08b9508d83a9243585d37f6d93c348651569f7db Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 26 Jul 2025 15:09:10 -0500 Subject: [PATCH] [ox/std] Give std::ignore a named type --- deps/ox/src/ox/std/ignore.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/ox/src/ox/std/ignore.hpp b/deps/ox/src/ox/std/ignore.hpp index 5dcaa5c9..52fc4254 100644 --- a/deps/ox/src/ox/std/ignore.hpp +++ b/deps/ox/src/ox/std/ignore.hpp @@ -16,7 +16,7 @@ namespace std { -inline constexpr struct { +inline constexpr struct ignore_t { constexpr void operator=(auto&&) const noexcept {} } ignore;