diff options
Diffstat (limited to 'include/cru/base/Range.h')
-rw-r--r-- | include/cru/base/Range.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/cru/base/Range.h b/include/cru/base/Range.h index edc2ec55..44c5aca0 100644 --- a/include/cru/base/Range.h +++ b/include/cru/base/Range.h @@ -7,10 +7,6 @@ struct Range final { return Range(start, end - start); } - constexpr static Range FromTwoSides(Index start, Index end, Index offset) { - return Range(start + offset, end - start); - } - constexpr Range() = default; constexpr Range(const Index position, const Index count = 0) : position(position), count(count) {} |