From 8a6bb6612b6cdaefc4b52e696d1591fde0ffc973 Mon Sep 17 00:00:00 2001 From: Nik Date: Sun, 17 Nov 2024 13:51:51 +0100 Subject: [PATCH] includes/std: Fixed standard library errors with latest nightly --- includes/std/mem.pat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/std/mem.pat b/includes/std/mem.pat index 84d962a..b7359b7 100644 --- a/includes/std/mem.pat +++ b/includes/std/mem.pat @@ -258,8 +258,8 @@ namespace auto std::mem { @tparam To The type to reinterpret to */ union Reinterpreter { - From from; - To to; + From from_value; + To to_value; };