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