diff options
author | Vicnet <vo.publique@gmail.com> | 2013-10-07 08:23:09 (GMT) |
---|---|---|
committer | Vicnet <vo.publique@gmail.com> | 2013-10-07 14:04:42 (GMT) |
commit | ce27757712c7621cbd81676b6d399976412d7ca0 (patch) | |
tree | 6d8db263d6cb79305e137613923d7d7beb9de93c /src/value.cc | |
parent | 119bf37cb343ec9873698a76150bca77b4d8e0b4 (diff) |
use explicit Value::RangeType for clarity
Diffstat (limited to 'src/value.cc')
-rw-r--r-- | src/value.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/value.cc b/src/value.cc index a281409..414975d 100644 --- a/src/value.cc +++ b/src/value.cc @@ -117,11 +117,6 @@ Value::Value(const RangeType &v) : value(v) // std::cout << "creating range\n"; } -Value::Value(double begin, double step, double end) : value(RangeType(begin, step, end)) -{ - // std::cout << "creating range from numbers\n"; -} - Value::ValueType Value::type() const { return static_cast<ValueType>(this->value.which()); |