From f53406d82865ad2807e0891ddae1d839a7622fce Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Mon, 22 May 2017 13:16:32 +0200 Subject: Fix misleading indentation --- src/XMLNode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/XMLNode.cpp b/src/XMLNode.cpp index 35f8093..3b7237f 100644 --- a/src/XMLNode.cpp +++ b/src/XMLNode.cpp @@ -414,8 +414,8 @@ static std::string setContentMatrix_internal(T* _pfMatrix, int _iWidth, int _iHe for (int y = 0; y < _iHeight; ++y) { if (_iWidth > 0) str += StringUtil::toString(_pfMatrix[0*s1 + y*s2]); - for (int x = 1; x < _iWidth; x++) - str += "," + StringUtil::toString(_pfMatrix[x*s1 + y*s2]); + for (int x = 1; x < _iWidth; x++) + str += "," + StringUtil::toString(_pfMatrix[x*s1 + y*s2]); if (y != _iHeight-1) str += ";"; -- cgit v1.2.3