1
0
Fork 0

[C] Some cleanup

This commit is contained in:
seleznevae 2019-05-24 09:31:10 +03:00
parent 7f8353a97b
commit 06623efbcf
6 changed files with 13 additions and 9 deletions

2
.gitignore vendored
View File

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

View File

@ -1,3 +1,9 @@
## v0.1.3
### Internal
- Fixed error with incorrect types when determine class of 'wchar_t' symbol for platforms with unsigned 'wchar_t'.
## v0.1.2
### Internal

View File

@ -9,7 +9,7 @@ target_include_directories(fort
)
set_target_properties(fort
PROPERTIES VERSION 0.1.2
PROPERTIES VERSION 0.1.3
SOVERSION 0.1)
if(FORT_HAVE_WCHAR)

View File

@ -5806,8 +5806,8 @@ void vector_clear(vector_t *vector)
struct interval {
int first;
int last;
wchar_t first;
wchar_t last;
};
/* auxiliary function for binary search in interval table */

View File

@ -46,8 +46,8 @@ SOFTWARE.
#define LIBFORT_MAJOR_VERSION 0
#define LIBFORT_MINOR_VERSION 1
#define LIBFORT_REVISION 2
#define LIBFORT_VERSION_STR "0.1.2"
#define LIBFORT_REVISION 3
#define LIBFORT_VERSION_STR "0.1.3"
/*****************************************************************************

View File

@ -46,8 +46,8 @@ SOFTWARE.
#define LIBFORT_MAJOR_VERSION 0
#define LIBFORT_MINOR_VERSION 1
#define LIBFORT_REVISION 2
#define LIBFORT_VERSION_STR "0.1.2"
#define LIBFORT_REVISION 3
#define LIBFORT_VERSION_STR "0.1.3"
/*****************************************************************************