From a8b83f7b483a516fb92e2e22b3f364d51b7eb273 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Thu, 16 Oct 2025 21:16:43 +0800 Subject: Resort input method demo. --- include/cru/base/Range.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/cru/base/Range.h') 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) {} -- cgit v1.2.3