diff options
| author | Maxime Coste <mawww@kakoune.org> | 2016-12-30 13:29:57 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2016-12-30 13:29:57 +0000 |
| commit | 76c58aa022a896dc170c207ff821992ee354d934 (patch) | |
| tree | e8c9340148891b0ab439115e3ecfd1a3ab73c591 /src | |
| parent | 7dae25c33fa94b12538b69213e3d731ca51df6b3 (diff) | |
Dont use constexpr to fix OSX compilation
Diffstat (limited to 'src')
| -rw-r--r-- | src/ncurses_ui.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index 1c57172d..3099c949 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -214,7 +214,7 @@ void on_term_resize(int) EventManager::instance().force_signal(0); } -static constexpr std::initializer_list<std::pair<const Kakoune::Color, int>> +static const std::initializer_list<std::pair<const Kakoune::Color, int>> default_colors = { { Color::Default, -1 }, { Color::Black, COLOR_BLACK }, |
