about summary refs log tree commit diff
path: root/src/base/tl/sorted_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/tl/sorted_array.h')
-rw-r--r--src/base/tl/sorted_array.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/tl/sorted_array.h b/src/base/tl/sorted_array.h
index 94ccd543..7e312e1e 100644
--- a/src/base/tl/sorted_array.h
+++ b/src/base/tl/sorted_array.h
@@ -10,11 +10,11 @@ template <class T, class ALLOCATOR = allocator_default<T> >
 class sorted_array : public array<T, ALLOCATOR>
 {
 	typedef array<T, ALLOCATOR> parent;
-	
+
 	// insert and size is not allowed
 	int insert(const T& item, typename parent::range r) { dbg_break(); return 0; }
 	int set_size(int new_size) { dbg_break(); return 0; }
-		
+
 public:
 	typedef plain_range_sorted<T> range;
 
@@ -27,7 +27,7 @@ public:
 	{

 		return parent::add(item);

 	}

-	

+

 	void sort_range()

 	{

 		sort(all());

@@ -37,7 +37,7 @@ public:
 	/*
 		Function: all
 			Returns a sorted range that contains the whole array.
-	*/	
+	*/
 	range all() { return range(parent::list, parent::list+parent::num_elements); }
 };