Skip to content

Commit 23e22a1

Browse files
authored
May 26, 2017
1 parent a6e4ac1 commit 23e22a1

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Infinity.hpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,7 @@ class Range
217217
int from, to, step;
218218
};
219219

220-
Range range(int to)
221-
{ return {to}; }
222-
223-
Range range(int from, int to)
224-
{ return {to, from}; }
225-
226-
Range range(int from, int to, int step)
227-
{ return {to, from, step}; }
220+
typedef Range range;
228221

229222
template<typename T>
230223
vector<int> argsort(const vector<T> &a)

0 commit comments

Comments
 (0)