From 6974cfbf64cccb40775067b5bb16d1e46c4bfcf9 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 29 Apr 2015 13:51:15 +0100 Subject: [PATCH] Use char32_t for Codepoint --- src/unicode.hh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/unicode.hh b/src/unicode.hh index 25408351..30cb8f48 100644 --- a/src/unicode.hh +++ b/src/unicode.hh @@ -1,14 +1,12 @@ #ifndef unicode_hh_INCLUDED #define unicode_hh_INCLUDED -#include -#include #include namespace Kakoune { -using Codepoint = uint32_t; +using Codepoint = char32_t; inline bool is_eol(Codepoint c) {