Win32/64 build fixes

This commit is contained in:
Chris Cannam
2015-06-29 14:50:33 +01:00
parent 1a96b9a19a
commit 6f86b96391
4 changed files with 5 additions and 1 deletions

View File

@@ -27,6 +27,8 @@
#include "system/Allocators.h" #include "system/Allocators.h"
#include <algorithm>
namespace RubberBand namespace RubberBand
{ {

View File

@@ -45,6 +45,7 @@
#include <cmath> #include <cmath>
#include <set> #include <set>
#include <map> #include <map>
#include <algorithm>
using namespace RubberBand; using namespace RubberBand;

View File

@@ -43,6 +43,7 @@
#include <set> #include <set>
#include <map> #include <map>
#include <deque> #include <deque>
#include <algorithm>
using namespace RubberBand; using namespace RubberBand;

View File

@@ -38,7 +38,7 @@
** long int lrint (double x) ; ** long int lrint (double x) ;
*/ */
#if (defined (WIN32) || defined (_WIN32)) #if ((defined (WIN32) || defined (_WIN32)) && !defined (_WIN64))
#include <math.h> #include <math.h>