summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorioh <mujo@sdf.org>2023-02-28 19:36:44 -0800
committerioh <mujo@sdf.org>2023-02-28 19:36:44 -0800
commit894e44fdbff4221549d358faa4a73ea43e1283a5 (patch)
treef77f0dda929e7552c7c3755b51bc425bb6fe5e43 /src
parent0989df35ed654f99960183769d8438a34ae8fc76 (diff)
Fix new gcc errors for missing types.
Errors when building with gcc 13: ranked_match.hh:10:21: error: ‘uint64_t’ does not name a type 10 | using UsedLetters = uint64_t; | ^~~~~~~~
Diffstat (limited to 'src')
-rw-r--r--src/keys.hh2
-rw-r--r--src/ranked_match.hh2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/keys.hh b/src/keys.hh
index 0af1a5a8..ccafe336 100644
--- a/src/keys.hh
+++ b/src/keys.hh
@@ -9,6 +9,8 @@
#include "unicode.hh"
#include "vector.hh"
+#include <cstdint>
+
namespace Kakoune
{
diff --git a/src/ranked_match.hh b/src/ranked_match.hh
index ec7fe626..62d6b8f0 100644
--- a/src/ranked_match.hh
+++ b/src/ranked_match.hh
@@ -4,6 +4,8 @@
#include "string.hh"
#include "meta.hh"
+#include <cstdint>
+
namespace Kakoune
{