diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-02-07 13:37:22 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-02-07 13:37:22 +0100 |
| commit | 2f9041b84244e5b0039ef4901c20b646f2ceaaf0 (patch) | |
| tree | 7a99bcf745bea965899542dfb32d6e12ae5c64fe /src/editor.cc | |
| parent | 8c8d46ae5f1ed4060a4b79e17d7f70c42d2b3999 (diff) | |
Editor: fix warning
Diffstat (limited to 'src/editor.cc')
| -rw-r--r-- | src/editor.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editor.cc b/src/editor.cc index 70ac6068..1edcc894 100644 --- a/src/editor.cc +++ b/src/editor.cc @@ -449,6 +449,9 @@ IncrementalInserter::IncrementalInserter(Editor& editor, InsertMode mode) } last = first; break; + case InsertMode::InsertAtNextLineBegin: + assert(false); // not implemented + break; } if (first.underlying_iterator().is_end()) --first; |
