Path: blob/master/thirdparty/openxr/src/external/jsoncpp/include/json/version.h
9913 views
#ifndef JSON_VERSION_H_INCLUDED1#define JSON_VERSION_H_INCLUDED23// Note: version must be updated in three places when doing a release. This4// annoying process ensures that amalgamate, CMake, and meson all report the5// correct version.6// 1. /meson.build7// 2. /include/json/version.h8// 3. /CMakeLists.txt9// IMPORTANT: also update the SOVERSION!!1011#define JSONCPP_VERSION_STRING "1.9.6"12#define JSONCPP_VERSION_MAJOR 113#define JSONCPP_VERSION_MINOR 914#define JSONCPP_VERSION_PATCH 615#define JSONCPP_VERSION_QUALIFIER16#define JSONCPP_VERSION_HEXA \17((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \18(JSONCPP_VERSION_PATCH << 8))1920#if !defined(JSONCPP_USE_SECURE_MEMORY)21#define JSONCPP_USING_SECURE_MEMORY 022#endif23// If non-zero, the library zeroes any memory that it has allocated before24// it frees its memory.2526#endif // JSON_VERSION_H_INCLUDED272829