includes/std: Fixed standard library errors with latest nightly

This commit is contained in:
Nik
2024-11-17 13:51:51 +01:00
committed by GitHub
parent 1d66949375
commit 8a6bb6612b

View File

@@ -258,8 +258,8 @@ namespace auto std::mem {
@tparam To The type to reinterpret to
*/
union Reinterpreter<From, To> {
From from;
To to;
From from_value;
To to_value;
};