diff --git a/deps/ox/src/ox/std/ignore.hpp b/deps/ox/src/ox/std/ignore.hpp index 771cb7e4..5ce40f0c 100644 --- a/deps/ox/src/ox/std/ignore.hpp +++ b/deps/ox/src/ox/std/ignore.hpp @@ -4,10 +4,17 @@ #pragma once -namespace ox { +#if __has_include() + +#include + +#else + +namespace std { inline constexpr struct { constexpr void operator=(auto&&) const noexcept {} } ignore; -} \ No newline at end of file +} +#endif