1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Changes to fix compilation problems on a Mac after extensive changes to improve NoteTrack display.

This commit is contained in:
prlivesey
2010-09-19 21:46:40 +00:00
parent 312faf654d
commit 3db9b4db68
6 changed files with 20 additions and 4 deletions

View File

@@ -9,6 +9,11 @@
#include "comp_chroma.h"
using namespace std;
#ifdef min
#undef min
#endif
#define min(x,y) ((x)<(y)?(x):(y))
#define SILENCE_DISTANCE 16.0
/* GEN_DIST

View File

@@ -28,7 +28,7 @@
#include "stdio.h"
#include "malloc.h"
#include <stdlib.h>
#include "sautils.h"
#include "hillclimb.h"