[C] Some cleanup
This commit is contained in:
parent
7f8353a97b
commit
06623efbcf
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
bld
|
|
||||||
src/tags
|
|
@ -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
|
## v0.1.2
|
||||||
|
|
||||||
### Internal
|
### Internal
|
||||||
|
@ -9,7 +9,7 @@ target_include_directories(fort
|
|||||||
)
|
)
|
||||||
|
|
||||||
set_target_properties(fort
|
set_target_properties(fort
|
||||||
PROPERTIES VERSION 0.1.2
|
PROPERTIES VERSION 0.1.3
|
||||||
SOVERSION 0.1)
|
SOVERSION 0.1)
|
||||||
|
|
||||||
if(FORT_HAVE_WCHAR)
|
if(FORT_HAVE_WCHAR)
|
||||||
|
@ -5806,8 +5806,8 @@ void vector_clear(vector_t *vector)
|
|||||||
|
|
||||||
|
|
||||||
struct interval {
|
struct interval {
|
||||||
int first;
|
wchar_t first;
|
||||||
int last;
|
wchar_t last;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* auxiliary function for binary search in interval table */
|
/* auxiliary function for binary search in interval table */
|
||||||
|
@ -46,8 +46,8 @@ SOFTWARE.
|
|||||||
|
|
||||||
#define LIBFORT_MAJOR_VERSION 0
|
#define LIBFORT_MAJOR_VERSION 0
|
||||||
#define LIBFORT_MINOR_VERSION 1
|
#define LIBFORT_MINOR_VERSION 1
|
||||||
#define LIBFORT_REVISION 2
|
#define LIBFORT_REVISION 3
|
||||||
#define LIBFORT_VERSION_STR "0.1.2"
|
#define LIBFORT_VERSION_STR "0.1.3"
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
@ -46,8 +46,8 @@ SOFTWARE.
|
|||||||
|
|
||||||
#define LIBFORT_MAJOR_VERSION 0
|
#define LIBFORT_MAJOR_VERSION 0
|
||||||
#define LIBFORT_MINOR_VERSION 1
|
#define LIBFORT_MINOR_VERSION 1
|
||||||
#define LIBFORT_REVISION 2
|
#define LIBFORT_REVISION 3
|
||||||
#define LIBFORT_VERSION_STR "0.1.2"
|
#define LIBFORT_VERSION_STR "0.1.3"
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user