diff options
-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; |