mirror of
https://github.com/nlohmann/json.git
synced 2026-03-02 07:16:24 +00:00
added fix for ssize_t for MSVC
This commit is contained in:
@@ -36,6 +36,11 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// enable ssize_t for MSVC
|
||||
#ifdef _MSC_VER
|
||||
using ssize_t = SSIZE_T;
|
||||
#endif
|
||||
|
||||
/*!
|
||||
@brief namespace for Niels Lohmann
|
||||
@see https://github.com/nlohmann
|
||||
|
||||
@@ -36,6 +36,11 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// enable ssize_t for MSVC
|
||||
#ifdef _MSC_VER
|
||||
using ssize_t = SSIZE_T;
|
||||
#endif
|
||||
|
||||
/*!
|
||||
@brief namespace for Niels Lohmann
|
||||
@see https://github.com/nlohmann
|
||||
|
||||
Reference in New Issue
Block a user