Update tiny-json.h

Replaced keyword in struct jsonPool_s to fix error in Visual Studio
pull/5/head
Jürgen Eidt 5 years ago committed by GitHub
parent 1d599e855b
commit f59ab0a051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tiny-json.h

@ -156,7 +156,7 @@ static inline double json_getReal( json_t const* property ) {
typedef struct jsonPool_s jsonPool_t;
struct jsonPool_s {
json_t* (*init)( jsonPool_t* pool );
json_t* (*new)( jsonPool_t* pool );
json_t* (*alloc)( jsonPool_t* pool );
};
/** Parse a string to get a json.

Loading…
Cancel
Save