about summary refs log tree commit diff
path: root/src/base/tl/range.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-04-13 20:37:12 +0200
committeroy <Tom_Adams@web.de>2011-04-13 20:37:12 +0200
commit06115dd49dca2f8eb5f14606437e8fd20037cc4d (patch)
tree5ec4bca6158319b3f5285d7689c5f94ae8da8c93 /src/base/tl/range.h
parent63e059b8fff6498e42b765a1dca000e53005ea77 (diff)
downloadzcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.tar.gz
zcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.zip
added "Whitespace and line Endings cleanup" by GreYFoX
Diffstat (limited to 'src/base/tl/range.h')
-rw-r--r--src/base/tl/range.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/base/tl/range.h b/src/base/tl/range.h
index 25047d31..f05169fa 100644
--- a/src/base/tl/range.h
+++ b/src/base/tl/range.h
@@ -11,7 +11,7 @@
 
 /*
 	Concept: concept_empty
-		
+
 		template<class T>
 		struct range
 		{
@@ -25,7 +25,7 @@ struct concept_empty
 
 /*
 	Concept: concept_index
-		
+
 		template<class T>
 		struct range
 		{
@@ -39,7 +39,7 @@ struct concept_index
 
 /*
 	Concept: concept_size
-		
+
 		template<class T>
 		struct range
 		{
@@ -53,7 +53,7 @@ struct concept_size
 
 /*
 	Concept: concept_slice
-		
+
 		template<class T>
 		struct range
 		{
@@ -67,7 +67,7 @@ struct concept_slice
 
 /*
 	Concept: concept_sorted
-		
+
 		template<class T>
 		struct range
 		{
@@ -82,13 +82,13 @@ struct concept_sorted
 /*
 	Concept: concept_forwarditeration
 		Checks for the front and pop_front methods
-		
+
 		template<class T>
 		struct range
 		{
 			void pop_front();
 			T &front() const;
-		};		
+		};
 */
 struct concept_forwarditeration
 {
@@ -98,13 +98,13 @@ struct concept_forwarditeration
 /*
 	Concept: concept_backwarditeration
 		Checks for the back and pop_back methods
-		
+
 		template<class T>
 		struct range
 		{
 			void pop_back();
 			T &back() const;
-		};			
+		};
 */
 struct concept_backwarditeration
 {
@@ -119,7 +119,7 @@ struct concept_backwarditeration
 
 /*
 	Class: plain_range
-	
+
 	Concepts:
 		<concept_empty>
 		<concept_index>
@@ -142,13 +142,13 @@ public:
 	{
 		*this = r;
 	}
-		
+
 	plain_range(T *b, T *e)
 	{
 		begin = b;
 		end = e;
 	}
-	
+
 	bool empty() const { return begin >= end; }
 	void pop_front() { assert(!empty()); begin++; }
 	void pop_back() { assert(!empty()); end--; }
@@ -160,7 +160,7 @@ public:
 	{
 		return plain_range(begin+startindex, begin+endindex);
 	}
-	
+
 protected:
 	T *begin;
 	T *end;
@@ -168,7 +168,7 @@ protected:
 
 /*
 	Class: plain_range_sorted
-	
+
 	Concepts:
 		Same as <plain_range> but with these additions:
 		<concept_sorted>
@@ -180,7 +180,7 @@ class plain_range_sorted : public plain_range<T>
 public:
 	/* sorted concept */
 	void sorted() const { }
-	
+
 	plain_range_sorted()
 	{}
 
@@ -188,11 +188,11 @@ public:
 	{
 		*this = r;
 	}
-		
+
 	plain_range_sorted(T *b, T *e)
 	: parent(b, e)
 	{}
-	
+
 	plain_range_sorted slice(unsigned start, unsigned count)
 	{
 		return plain_range_sorted(parent::begin+start, parent::begin+start+count);
@@ -206,29 +206,29 @@ private:
 	reverse_range() {}
 public:
 	typedef typename R::type type;
-	
+
 	reverse_range(R r)
 	{
 		range = r;
 	}
-	
+
 	reverse_range(const reverse_range &other) { range = other.range; }
-	
+
 
 	bool empty() const { return range.empty(); }
 	void pop_front() { range.pop_back(); }
 	void pop_back() { range.pop_front(); }
 	type& front() { return range.back(); }
 	type& back() { return range.front(); }
-	
+
 	R range;
 };
 
 template<class R> reverse_range<R> reverse(R range) {
-   return reverse_range<R>(range);
+	return reverse_range<R>(range);
 }
 template<class R> R reverse(reverse_range<R> range) {
-   return range.range;
+	return range.range;
 }
 
 #endif // TL_FILE_RANGE_HPP