includes/type: Fix error in float16 format function (#336)

This commit is contained in:
JTurtle
2025-01-05 00:46:09 -08:00
committed by GitHub
parent 559faebec3
commit 4092dad428

View File

@@ -52,7 +52,7 @@ namespace auto type {
std::mem::Reinterpreter<u32, float> converter;
converter.from_value = result;
return std::format("{}", converter.to);
return std::format("{}", converter.to_value);
};
}