tree-sitter: fix relative paths in unicode/ subdir

This commit is contained in:
Björn Linse 2019-12-16 19:41:15 +01:00
parent 79bd8d2ab6
commit f486d2145a
4 changed files with 8 additions and 8 deletions

View File

@ -10,8 +10,8 @@ extern "C" {
#define U_EXPORT
#define U_EXPORT2
#include "unicode/utf8.h"
#include "unicode/utf16.h"
#include "./unicode/utf8.h"
#include "./unicode/utf16.h"
static const int32_t TS_DECODE_ERROR = U_SENTINEL;

View File

@ -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

View File

@ -34,9 +34,9 @@
#ifndef __UTF16_H__
#define __UTF16_H__
#include "unicode/umachine.h"
#include "./umachine.h"
#ifndef __UTF_H__
# include "unicode/utf.h"
# include "./utf.h"
#endif
/* single-code point definitions -------------------------------------------- */

View File

@ -34,9 +34,9 @@
#ifndef __UTF8_H__
#define __UTF8_H__
#include "unicode/umachine.h"
#include "./umachine.h"
#ifndef __UTF_H__
# include "unicode/utf.h"
# include "./utf.h"
#endif
/* internal definitions ----------------------------------------------------- */