From c6f98f84836927d5af269733f8e2833167e7e3e3 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 9 Dec 2018 22:05:32 +1100 Subject: [PATCH] Fix compilation error --- src/ncurses_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index 1ef6bfd4..2e5ba92e 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -656,7 +656,7 @@ Optional NCursesUI::get_next_key() }; constexpr auto direction = make_array({Key::Up, Key::Down, Key::Right, Key::Left, Key::Home, Key::End}); - auto parse_csi = [this]() -> Optional { + auto parse_csi = [this, &direction]() -> Optional { const Codepoint c1 = wgetch(m_window); if (c1 >= 'A' and c1 <= 'F') return Key{direction[c1 - 'A']};