remove a few unused Iterator/Cursor interfaces

This commit is contained in:
Josh Holtrop 2016-12-11 15:23:39 -05:00
parent 9b6b21a1d0
commit f41b59aa81

View File

@ -42,7 +42,6 @@ public:
return 0xFFFFFFFFu;
}
}
Buffer * buffer() const { return m_buffer; }
bool operator<(const Iterator & other) const
{
return m_offset < other.m_offset;
@ -83,8 +82,6 @@ public:
bool valid() const { return m_iterator.valid(); }
size_t line() const { return m_line; }
size_t column() const { return m_column; }
Iterator & iterator() { return m_iterator; }
void set_line(size_t line) { m_line = line; }
void calculate_column();
protected: