From 3328e479fda1ecd36ce7b4825351a46b2d01c8e7 Mon Sep 17 00:00:00 2001 From: John Glover Date: Mon, 29 Aug 2011 14:04:11 +0100 Subject: SWIG doesn't seem to like this throw statement, remove for now. --- src/simpl/base.cpp | 1 - src/simpl/base.h | 2 +- 2 files changed, 1 insertion(+), 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 Peaks; -- cgit v1.2.3