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;
      |                     ^~~~~~~~
main
ioh 2023-02-28 19:36:44 -08:00
parent 0989df35ed
commit 894e44fdbf
2 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,8 @@
#include "unicode.hh"
#include "vector.hh"
#include <cstdint>
namespace Kakoune
{

View File

@ -4,6 +4,8 @@
#include "string.hh"
#include "meta.hh"
#include <cstdint>
namespace Kakoune
{