diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-12-16 19:41:15 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2019-12-22 11:56:13 +0100 |
commit | f486d2145a5c252d7f37ea399f9a769ddd745934 (patch) | |
tree | 4e05baf50a8b2ce0d57e6f62c766dd1dce9605ff /src/tree_sitter/unicode/umachine.h | |
parent | 79bd8d2ab6cae1c0be3233a9a7551d0b7bcc5944 (diff) | |
download | rneovim-f486d2145a5c252d7f37ea399f9a769ddd745934.tar.gz rneovim-f486d2145a5c252d7f37ea399f9a769ddd745934.tar.bz2 rneovim-f486d2145a5c252d7f37ea399f9a769ddd745934.zip |
tree-sitter: fix relative paths in unicode/ subdir
Diffstat (limited to 'src/tree_sitter/unicode/umachine.h')
-rw-r--r-- | src/tree_sitter/unicode/umachine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tree_sitter/unicode/umachine.h b/src/tree_sitter/unicode/umachine.h index 9195824d5b..bbf6ef9c8b 100644 --- a/src/tree_sitter/unicode/umachine.h +++ b/src/tree_sitter/unicode/umachine.h @@ -43,7 +43,7 @@ /* which are contained in the platform-specific file platform.h */ /*==========================================================================*/ -#include "unicode/ptypes.h" /* platform.h is included in ptypes.h */ +#include "./ptypes.h" /* platform.h is included in ptypes.h */ /* * ANSI C headers: @@ -443,6 +443,6 @@ typedef int32_t UChar32; */ #define U_SENTINEL (-1) -#include "unicode/urename.h" +#include "./urename.h" #endif |