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; | ^~~~~~~~
This commit is contained in:
parent
0989df35ed
commit
894e44fdbf
|
@ -9,6 +9,8 @@
|
|||
#include "unicode.hh"
|
||||
#include "vector.hh"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace Kakoune
|
||||
{
|
||||
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
#include "string.hh"
|
||||
#include "meta.hh"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace Kakoune
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user