From c07050ef9d1c8448f35d648e00a815288e3947c4 Mon Sep 17 00:00:00 2001 From: Tobias Widlund Date: Thu, 31 Aug 2017 12:42:59 +0200 Subject: [PATCH] Fixed incorrect indentation --- 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 0450dd4b..edb76bf5 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -409,7 +409,7 @@ namespace detail if(0 != i) os << fmt.space; - os << column(ml, i) << ((cols-1 != i) ? fmt.space : fmt.delim_right) << fmt.space << ((0 != i) ? fmt.space : fmt.delim_left) << column(mr, i); + os << column(ml, i) << ((cols-1 != i) ? fmt.space : fmt.delim_right) << fmt.space << ((0 != i) ? fmt.space : fmt.delim_left) << column(mr, i); if(cols-1 != i) os << fmt.newline;