changeset 68:050d764df239

#include <math.h> required on OSX
author Martin Gasser
date Tue, 24 Oct 2006 11:15:51 +0000
parents 0229bec2d2dc
children 76cc2c424268
files audioio/PlaySpeedRangeMapper.cpp
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/audioio/PlaySpeedRangeMapper.cpp	Fri Oct 20 20:14:20 2006 +0000
+++ b/audioio/PlaySpeedRangeMapper.cpp	Tue Oct 24 11:15:51 2006 +0000
@@ -18,6 +18,8 @@
 #include <iostream>
 
 
+#include <math.h>
+
 PlaySpeedRangeMapper::PlaySpeedRangeMapper(int minpos, int maxpos) :
     m_minpos(minpos),
     m_maxpos(maxpos)