diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-04-27 18:06:36 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-04-27 18:06:36 -0400 |
commit | d8f56eb5e7dfa41a21eb67503e570fd768d52109 (patch) | |
tree | d218d2014cdb49f8fdd4dc8123552f5a84383c25 | |
parent | fce15b9a801e24a1c7720946af42fd68d10a7ce9 (diff) | |
download | fuse_networks-d8f56eb5e7dfa41a21eb67503e570fd768d52109.tar.gz fuse_networks-d8f56eb5e7dfa41a21eb67503e570fd768d52109.tar.bz2 fuse_networks-d8f56eb5e7dfa41a21eb67503e570fd768d52109.zip |
removed exception from analysis_tools
-rw-r--r-- | src/analysis_tools.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/analysis_tools.cpp b/src/analysis_tools.cpp index dea20f0..2ef74c6 100644 --- a/src/analysis_tools.cpp +++ b/src/analysis_tools.cpp @@ -1,14 +1,6 @@ #include "analysis_tools.hpp" -class badcycleException: public std::exception -{ - virtual const char* what() const throw() - { - return "Could not find a valid cycle on the broken system."; - } -} badcycleex; - template <class T> bool is_shorter(const std::list<T> &l1, const std::list<T> &l2) { return l1.size() < l2.size(); |