diff src/OnsetDetectionFunction.cpp @ 53:338f5eb29e41

Small syntax change for array arguments so they are pointers rather than array[]. Just personal preference.
author Adam Stark <adamstark@users.noreply.github.com>
date Wed, 22 Jan 2014 01:34:04 +0000
parents 45231107c9d6
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;