[ox/std] Replace ox::ignore with std::ignore

This commit is contained in:
Gary Talent 2024-04-13 00:35:49 -05:00
parent abc076d657
commit 6808adc8a1

View File

@ -4,10 +4,17 @@
#pragma once #pragma once
namespace ox { #if __has_include(<tuple>)
#include <tuple>
#else
namespace std {
inline constexpr struct { inline constexpr struct {
constexpr void operator=(auto&&) const noexcept {} constexpr void operator=(auto&&) const noexcept {}
} ignore; } ignore;
} }
#endif