summaryrefslogtreecommitdiff
path: root/impl/Complete.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'impl/Complete.hpp')
-rw-r--r--impl/Complete.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/impl/Complete.hpp b/impl/Complete.hpp
index 81ced52..5219c9e 100644
--- a/impl/Complete.hpp
+++ b/impl/Complete.hpp
@@ -16,7 +16,8 @@ struct Complete {
Complete(const T& value, const bool& infinity)
: _value(value), _infinity(infinity) {
if (value == 0 && infinity == true) {
- throw "Zero infinity? Die die die!";
+ std::cout << "throw exception" << *(char*)NULL;
+ //throw "Zero infinity? Die die die!";
}
}
Complete(const Complete& other)