diff options
author | John Glover <glover.john@gmail.com> | 2011-08-29 14:04:11 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2011-08-29 14:04:11 +0100 |
commit | 3328e479fda1ecd36ce7b4825351a46b2d01c8e7 (patch) | |
tree | 3a398ba5c4f0ee6320e827259e7006ae6a8f6a04 /src | |
parent | 4f3b40c3ad337a54168844058adfd3d7cb1f0aea (diff) | |
download | simpl-3328e479fda1ecd36ce7b4825351a46b2d01c8e7.tar.gz simpl-3328e479fda1ecd36ce7b4825351a46b2d01c8e7.tar.bz2 simpl-3328e479fda1ecd36ce7b4825351a46b2d01c8e7.zip |
SWIG doesn't seem to like this throw statement,
remove for now.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/base.cpp | 1 | ||||
-rw-r--r-- | src/simpl/base.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index 0252254..94a7936 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -45,7 +45,6 @@ Peak::~Peak() // Returns true iff this peak is unmatched in the given direction, and has positive amplitude bool Peak::is_free(const string direction) -throw(InvalidArgument) { if(amplitude <= 0.0) { diff --git a/src/simpl/base.h b/src/simpl/base.h index 15a66a8..d8e31d2 100644 --- a/src/simpl/base.h +++ b/src/simpl/base.h @@ -56,7 +56,7 @@ public: { return previous_peak == NULL; }; - bool is_free(const string direction = string("forwards")) throw(InvalidArgument); + bool is_free(const string direction = string("forwards")); }; typedef std::vector<Peak> Peaks; |