1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-28 09:07:19 +03:00

remove Selection::buffer

This commit is contained in:
Maxime Coste 2013-05-30 13:59:07 +02:00
parent 5b0087b545
commit 5e64f6d1ec

View File

@ -55,9 +55,7 @@ struct Selection : public Range
CaptureList& captures() { return m_captures; }
const CaptureList& captures() const { return m_captures; }
const Buffer& buffer() const { return first().buffer(); }
private:
CaptureList m_captures;
};