Skip to content

Commit

Permalink
fix unmatched elif
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed Oct 27, 2020
1 parent f0ab007 commit 209c230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yyjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
# if defined(__INT64_TYPE__) && defined(__UINT64_TYPE__)
typedef __INT64_TYPE__ int64_t;
typedef __UINT64_TYPE__ uint64_t;
# if defined(__GNUC__) || defined(__clang__)
# elif defined(__GNUC__) || defined(__clang__)
__extension__ typedef long long int64_t;
__extension__ typedef unsigned long long uint64_t;
# elif defined(_LONG_LONG) || defined(__MWERKS__) || defined(_CRAYC) || \
Expand Down

1 comment on commit 209c230

@ibireme
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix #7 , tested on centos 7.4 and gcc 4.8.5

Please sign in to comment.