diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-06-24 13:44:47 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-06-24 13:44:47 +0100 |
| commit | 26cfd6af9b6d738485dc3e34d92417ef0092c269 (patch) | |
| tree | b2f6a7aa7821c98f46b567532165ea7f33c1cb9d /src/buffer.inl.hh | |
| parent | b97b907b2aea3ac5421469394a08887dd97a2b54 (diff) | |
Style tweak
Diffstat (limited to 'src/buffer.inl.hh')
| -rw-r--r-- | src/buffer.inl.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.inl.hh b/src/buffer.inl.hh index 0b013dcd..cc3f83b9 100644 --- a/src/buffer.inl.hh +++ b/src/buffer.inl.hh @@ -73,12 +73,12 @@ inline bool Buffer::is_end(ByteCoord c) const inline BufferIterator Buffer::begin() const { - return BufferIterator(*this, { 0_line, 0 }); + return {*this, { 0_line, 0 }}; } inline BufferIterator Buffer::end() const { - return BufferIterator{*this, end_coord()}; + return {*this, end_coord()}; } [[gnu::always_inline]] |
