From 15a7e7be2a08fb4e40330f951cbdc1cb1219c8ab Mon Sep 17 00:00:00 2001 From: oparviai Date: Thu, 12 Feb 2009 17:20:22 +0000 Subject: [PATCH] Added 'const' keyword --- include/BPMDetect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/BPMDetect.h b/include/BPMDetect.h index ca498d9..260321e 100644 --- a/include/BPMDetect.h +++ b/include/BPMDetect.h @@ -146,8 +146,8 @@ public: /// function. /// /// Notice that data in 'samples' array can be disrupted in processing. - void inputSamples(soundtouch::SAMPLETYPE *samples, ///< Pointer to input/working data buffer - int numSamples ///< Number of samples in buffer + void inputSamples(const soundtouch::SAMPLETYPE *samples, ///< Pointer to input/working data buffer + int numSamples ///< Number of samples in buffer );