From 12c498a0bd7fc03dcef88ef2d3564d0c1419eb8a Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 8 May 2017 12:34:57 +0100 Subject: Distinguish between BufferRanges and InclusiveBufferRanges Fixes #1257 --- src/display_buffer.hh | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/display_buffer.hh') diff --git a/src/display_buffer.hh b/src/display_buffer.hh index 17c2602f..18b238d8 100644 --- a/src/display_buffer.hh +++ b/src/display_buffer.hh @@ -14,9 +14,6 @@ namespace Kakoune class Buffer; struct BufferRange{ BufferCoord begin, end; }; -String option_to_string(BufferRange range); -void option_from_string(StringView str, BufferRange& opt); - inline bool operator==(const BufferRange& lhs, const BufferRange& rhs) { return lhs.begin == rhs.begin and lhs.end == rhs.end; -- cgit v1.2.3