Remove fmt::format and replace with std::format

This commit is contained in:
Alexander Bock
2024-03-24 20:19:14 +01:00
parent 9878bfc8f7
commit 3ba346a227
246 changed files with 1343 additions and 1300 deletions

View File

@@ -530,7 +530,7 @@ glm::dmat3 FixedRotation::matrix(const UpdateData&) const {
{
LWARNINGC(
"FixedRotation",
fmt::format(
std::format(
"Near-collinear vectors detected: "
"x ({}, {}, {}) y ({}, {}, {}) z ({}, {}, {})",
x.x, x.y, x.z, y.x, y.y, y.z, z.x, z.y, z.z