# HG changeset patch # User Chris Cannam # Date 1559322959 -3600 # Node ID 3f649fbb11720bb0d0b41232383b3d149a6c0fb4 # Parent bb78ca3fe7de652731c85488824fc5f20dd43cfc Formatting diff -r bb78ca3fe7de -r 3f649fbb1172 base/Window.h --- a/base/Window.h Fri May 31 17:24:50 2019 +0100 +++ b/base/Window.h Fri May 31 18:15:59 2019 +0100 @@ -60,7 +60,9 @@ void cut(T *src) const { cut(src, src); } void cut(const T *src, T *dst) const { - for (int i = 0; i < m_size; ++i) dst[i] = src[i] * m_cache[i]; + for (int i = 0; i < m_size; ++i) { + dst[i] = src[i] * m_cache[i]; + } } WindowType getType() const { return m_type; }