summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-09-19 09:39:23 +0100
committerJohn Glover <j@johnglover.net>2012-09-19 09:39:23 +0100
commit573cee4854a8df3da52b519801c6c7446c89e34b (patch)
treeda08ecefe166290c9a62b7d709168bfe97a1babc /src
parentabfe14097571c0cbcd683e1d121eb80f8999c4c2 (diff)
downloadsimpl-573cee4854a8df3da52b519801c6c7446c89e34b.tar.gz
simpl-573cee4854a8df3da52b519801c6c7446c89e34b.tar.bz2
simpl-573cee4854a8df3da52b519801c6c7446c89e34b.zip
[sndobj] Bug fix: make sure that TWOPI is not
already defined elsewhere.
Diffstat (limited to 'src')
-rw-r--r--src/sndobj/Table.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sndobj/Table.h b/src/sndobj/Table.h
index f89029b..fd815dc 100644
--- a/src/sndobj/Table.h
+++ b/src/sndobj/Table.h
@@ -29,7 +29,11 @@
#ifndef _TABLE_H
#define _TABLE_H
#include <math.h>
+
+#ifndef TWOPI
const double TWOPI = 8.*atan(1.);
+#endif
+
class Table {
protected: