Skip to content

Commit

Permalink
[C] Some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
seleznevae committed May 24, 2019
1 parent 7f8353a commit 06623ef
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions lib/fort.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
4 changes: 2 additions & 2 deletions lib/fort.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"


/*****************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions src/fort.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"


/*****************************************************************************
Expand Down

0 comments on commit 06623ef

Please sign in to comment.