diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-09-02 21:15:16 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-09-02 21:15:16 +0100 |
| commit | a7d93fa11ee985c94950e819720109659af8a5d3 (patch) | |
| tree | 20d311996ca482e5cd1dad10e37e507f2cd75ee0 /src | |
| parent | da5e662cf8d0833f395a012a7797eb6e37a6b9ae (diff) | |
std::accumulate is in <numeric> not <algorithm>
Diffstat (limited to 'src')
| -rw-r--r-- | src/insert_completer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert_completer.cc b/src/insert_completer.cc index ad32bf30..126ab57c 100644 --- a/src/insert_completer.cc +++ b/src/insert_completer.cc @@ -11,7 +11,7 @@ #include "window.hh" #include "word_db.hh" -#include <algorithm> +#include <numeric> namespace Kakoune { |
