From 2f9041b84244e5b0039ef4901c20b646f2ceaaf0 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 7 Feb 2013 13:37:22 +0100 Subject: [PATCH] Editor: fix warning --- src/editor.cc | 3 +++ 1 file changed, 3 insertions(+) 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;