diff src/OnsetDetectionFunction.cpp @ 16:73c64ca0ed23 develop

Small syntax change for array arguments so they are pointers rather than array[]. Just personal preference.
author Adam <adamstark.uk@gmail.com>
date Wed, 22 Jan 2014 01:34:04 +0000
parents 2b94d3d2fb9d
children baf35f208814
line wrap: on
line diff
--- a/src/OnsetDetectionFunction.cpp	Wed Jan 22 01:13:45 2014 +0000
+++ b/src/OnsetDetectionFunction.cpp	Wed Jan 22 01:34:04 2014 +0000
@@ -168,7 +168,7 @@
 }
 
 //=======================================================================
-double OnsetDetectionFunction :: getDFsample(double inputbuffer[])
+double OnsetDetectionFunction :: getDFsample(double *inputbuffer)
 {	
 	double df_sample;