mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-05 12:48:43 +03:00
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 "unicode.hh"
|
||||||
#include "vector.hh"
|
#include "vector.hh"
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
#include "string.hh"
|
#include "string.hh"
|
||||||
#include "meta.hh"
|
#include "meta.hh"
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user