diff data/fft/FFTDataServer.cpp @ 897:69cc0454ed72

Make it possible to import CSV files directly into Note layers
author Chris Cannam
date Mon, 07 Apr 2014 10:47:15 +0100
parents e802e550a1f2
children 166e3fc1e962
line wrap: on
line diff
--- a/data/fft/FFTDataServer.cpp	Thu Mar 27 13:32:56 2014 +0000
+++ b/data/fft/FFTDataServer.cpp	Mon Apr 07 10:47:15 2014 +0100
@@ -868,7 +868,7 @@
     // and previous cache readers)
     int deleteCandidate = c - 2;
     if (deleteCandidate < 0) deleteCandidate = c + 2;
-    if (deleteCandidate >= m_caches.size()) {
+    if (deleteCandidate >= (int)m_caches.size()) {
         return true;
     }