diff maths/Correlation.h @ 499:af5b7ef02aa7

Style fixes: avoid unsigned, fix formatting
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 03 Jun 2019 14:20:39 +0100
parents 701233f8ed41
children
line wrap: on
line diff
--- a/maths/Correlation.h	Mon Jun 03 14:20:07 2019 +0100
+++ b/maths/Correlation.h	Mon Jun 03 14:20:39 2019 +0100
@@ -18,10 +18,10 @@
 class Correlation  
 {
 public:
-    void doAutoUnBiased( double* src, double* dst, unsigned int length );
     Correlation();
     virtual ~Correlation();
 
+    void doAutoUnBiased( double* src, double* dst, int length );
 };
 
-#endif // 
+#endif