From e44129577a010ebb4dc609b806104d3175659074 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 10 Dec 2016 13:43:41 +0000 Subject: [PATCH] Fix one definition rule violation in ncurses_ui.hh The memory domain of Vector was different depending on if display_buffer.hh has been included or not. --- src/ncurses_ui.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncurses_ui.hh b/src/ncurses_ui.hh index c4501c91..bd330627 100644 --- a/src/ncurses_ui.hh +++ b/src/ncurses_ui.hh @@ -96,7 +96,7 @@ private: struct Menu : Window { - Vector items; + Vector items; Face fg; Face bg; DisplayCoord anchor;