From dac18393fa803eeb1a4517882b4349e4ab025ea6 Mon Sep 17 00:00:00 2001 From: "diego.mateos" Date: Thu, 25 Jan 2024 16:58:20 +0100 Subject: [PATCH] reduce default width to compensate new space --- glm/gtx/io.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index c81ba1fb..4717a168 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -21,7 +21,7 @@ namespace io : std::locale::facet(a) , formatted(true) , precision(3) - , width(1 + 4 + 1 + precision) + , width(4 + 1 + precision) , separator(',') , delim_left('[') , delim_right(']')