Skip to content

Commit 6f52bfb

Browse files
committed
Squashed 'libs/ujson4c/' changes from 6c0831944..9f8383bff
9f8383bff fix: don't export helper funcs JSON_XcodeObject git-subtree-dir: libs/ujson4c git-subtree-split: 9f8383bff7434cec7501d375ae0d6cef911f6095
1 parent 1eaec16 commit 6f52bfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

3rdparty/ultrajson.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Life cycle of the provided buffer must still be handled by caller.
278278
If the return value doesn't equal the specified buffer caller must release the memory using
279279
JSONObjectEncoder.free or free() as specified when calling this function.
280280
*/
281-
EXPORTFUNCTION char *JSON_EncodeObject(JSOBJ obj, JSONObjectEncoder *enc, char *buffer, size_t cbBuffer);
281+
char *JSON_EncodeObject(JSOBJ obj, JSONObjectEncoder *enc, char *buffer, size_t cbBuffer);
282282

283283

284284

@@ -305,6 +305,6 @@ typedef struct __JSONObjectDecoder
305305
void *prv;
306306
} JSONObjectDecoder;
307307

308-
EXPORTFUNCTION JSOBJ JSON_DecodeObject(JSONObjectDecoder *dec, const char *buffer, size_t cbBuffer);
308+
JSOBJ JSON_DecodeObject(JSONObjectDecoder *dec, const char *buffer, size_t cbBuffer);
309309

310310
#endif

0 commit comments

Comments
 (0)