diff options
| author | AdriĆ Arrufat <adria.arrufat@outlook.com> | 2023-06-09 21:41:51 +0900 |
|---|---|---|
| committer | AdriĆ Arrufat <adria.arrufat@outlook.com> | 2023-06-09 21:41:51 +0900 |
| commit | 77ade51a8153028b40f0a415046cf37e108858fb (patch) | |
| tree | 0325dfc95c74d0d786439baf92618c4d91ec9974 /src | |
| parent | e0728d3434d5ea335521484521d246473ca06165 (diff) | |
Fix build using GCC 13.1
The <functional> header was missing and the "hash.hh" was not used.
Diffstat (limited to 'src')
| -rw-r--r-- | src/display_buffer.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display_buffer.hh b/src/display_buffer.hh index e3b4983e..2d679451 100644 --- a/src/display_buffer.hh +++ b/src/display_buffer.hh @@ -2,12 +2,12 @@ #define display_buffer_hh_INCLUDED #include "face.hh" -#include "hash.hh" #include "coord.hh" #include "range.hh" #include "string.hh" #include "vector.hh" #include "hash_map.hh" +#include <functional> namespace Kakoune { |
