diff --git a/src/Array.h b/src/Array.h index e761dde90..22b8288a5 100644 --- a/src/Array.h +++ b/src/Array.h @@ -186,7 +186,7 @@ template Corrade::Utility::Debug operator<<(Co if(i != 0) debug << ", "; debug << value[i]; } - debug << ')'; + debug << ")"; debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, true); return debug; } diff --git a/src/DebugTools/Profiler.cpp b/src/DebugTools/Profiler.cpp index 288ba1392..06f128ae2 100644 --- a/src/DebugTools/Profiler.cpp +++ b/src/DebugTools/Profiler.cpp @@ -105,7 +105,7 @@ void Profiler::printStatistics() { Debug() << "Statistics for last" << measureDuration << "frames:"; for(std::size_t i = 0; i != sections.size(); ++i) - Debug() << ' ' << sections[totalSorted[i]] << std::chrono::microseconds(totalData[totalSorted[i]]).count()/frameCount << u8"µs"; + Debug() << " " << sections[totalSorted[i]] << std::chrono::microseconds(totalData[totalSorted[i]]).count()/frameCount << u8"µs"; } }} diff --git a/src/Math/RectangularMatrix.h b/src/Math/RectangularMatrix.h index 592e062c5..46b133290 100644 --- a/src/Math/RectangularMatrix.h +++ b/src/Math/RectangularMatrix.h @@ -427,7 +427,7 @@ template Corrade::Utility::Debug op debug << typename MathTypeTraits::NumericType(value[col][row]); } } - debug << ')'; + debug << ")"; debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, true); return debug; } diff --git a/src/Math/Vector.h b/src/Math/Vector.h index d21fde555..483f335b5 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -326,7 +326,7 @@ template Corrade::Utility::Debug operator<<(Corrade:: if(i != 0) debug << ", "; debug << typename MathTypeTraits::NumericType(value[i]); } - debug << ')'; + debug << ")"; debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, true); return debug; }