diff options
author | John Glover <j@johnglover.net> | 2012-09-19 09:39:23 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-09-19 09:39:23 +0100 |
commit | 573cee4854a8df3da52b519801c6c7446c89e34b (patch) | |
tree | da08ecefe166290c9a62b7d709168bfe97a1babc /src | |
parent | abfe14097571c0cbcd683e1d121eb80f8999c4c2 (diff) | |
download | simpl-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.h | 4 |
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: |