1
0
Fork 0

Merge pull request #4 from pdietl/fixed_wchar_t_signed

Fix signed mismatch
This commit is contained in:
Seleznev Anton 2019-05-24 09:20:25 +03:00 committed by GitHub
commit 7f8353a97b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bld
src/tags

View File

@ -65,8 +65,8 @@
struct interval {
int first;
int last;
wchar_t first;
wchar_t last;
};
/* auxiliary function for binary search in interval table */