summaryrefslogtreecommitdiff
path: root/src/ranked_match.hh
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/ranked_match.hh
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/ranked_match.hh')
-rw-r--r--src/ranked_match.hh2
1 files changed, 2 insertions, 0 deletions
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
{