aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-02-02 12:04:56 -0200
committerSamuel Fadel <samuelfadel@gmail.com>2016-02-02 12:04:56 -0200
commited6386edd202de8ba3a737ce1e33499370edcaed (patch)
tree2a33af5fe639c0ac7a6520a3c0d7895786dd571a
parent354b3a4f09eb2b76a1af8cad6eb348949beda547 (diff)
Removed tabs in numericrange.h
-rw-r--r--numericrange.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/numericrange.h b/numericrange.h
index d86e578..0b69d0e 100644
--- a/numericrange.h
+++ b/numericrange.h
@@ -16,11 +16,11 @@ public:
friend class NumericRange;
public:
typedef iterator self_type;
- typedef T value_type;
- typedef T& reference;
- typedef T* pointer;
- typedef std::bidirectional_iterator_tag iterator_category;
- typedef int difference_type;
+ typedef T value_type;
+ typedef T& reference;
+ typedef T* pointer;
+ typedef std::bidirectional_iterator_tag iterator_category;
+ typedef int difference_type;
iterator(const T &first): m_value(first) {}