# HG changeset patch # User Teemu Piippo # Date 1390155545 -7200 # Node ID 88c4b3ca3e5d89f789097232ccc7401a42805f94 # Parent 4655d342a9980679a0755b9914006e5124a36a86 - removed simple_exception, that was stupid diff -r 4655d342a998 -r 88c4b3ca3e5d src/types.h --- a/src/types.h Sun Jan 19 20:17:30 2014 +0200 +++ b/src/types.h Sun Jan 19 20:19:05 2014 +0200 @@ -41,20 +41,6 @@ return (a >= 0) ? a : -a; } -// ============================================================================= -// A simple basic exception -// -class simple_exception : public std::exception -{ - public: - simple_exception(); - - inline const char* what() const throw() - { - return "simple exception"; - } -}; - #ifdef IN_IDE_PARSER using FILE = void; #endif