From a0b3e97d555ee504636c06fd3a72983b95c3bfb6 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 26 Sep 2014 22:51:49 +0200 Subject: Eliminated manual division through zero prevention * while integer division through zero is obviously a low level error that should be prevented, this operation is well-defined for floating point values as used by SimpleParser --- src/exceptions.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/exceptions.h') diff --git a/src/exceptions.h b/src/exceptions.h index b17f424..1408603 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -17,13 +17,6 @@ class operator_exception: public std::exception { } }; -class divide_exception: public std::exception { - virtual const char* what() const throw() - { - return "A divison through zero had to be prevented by the parser - check your input term."; - } -}; - class identifier_exception: public std::exception { virtual const char* what() const throw() { -- cgit v1.2.3