diff base/SincWindow.h @ 483:fdaa63607c15

Untabify, indent, tidy
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 31 May 2019 11:54:32 +0100
parents 59b151f13b3e
children 701233f8ed41
line wrap: on
line diff
--- a/base/SincWindow.h	Fri May 31 11:02:28 2019 +0100
+++ b/base/SincWindow.h	Fri May 31 11:54:32 2019 +0100
@@ -33,21 +33,21 @@
     SincWindow(int length, double p) : m_length(length), m_p(p) { init(); }
 
     int getLength() const {
-	return m_length;
+        return m_length;
     }
 
     const double *getWindow() const { 
-	return m_window.data();
+        return m_window.data();
     }
 
     void cut(double *src) const { 
-	cut(src, src); 
+        cut(src, src); 
     }
 
     void cut(const double *src, double *dst) const {
-	for (int i = 0; i < m_length; ++i) {
-	    dst[i] = src[i] * m_window[i];
-	}
+        for (int i = 0; i < m_length; ++i) {
+            dst[i] = src[i] * m_window[i];
+        }
     }
 
 private: