mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
3fde8a4eac
* Patch for possible AVX-512 overflow. * Updating the test for new padding. * Preparing new version. * replace binary integer literals with hex literals for C++11 compatibility (#1855) Binary integer literals are a C++14 feature, so those are not supported in C++11 and should be replaced by hexadecimal literals instead. Fixes #1854. Co-authored-by: Dirk Stolle <striezel-dev@web.de>
27 lines
701 B
C++
27 lines
701 B
C++
// /include/simdjson/simdjson_version.h automatically generated by release.py,
|
|
// do not change by hand
|
|
#ifndef SIMDJSON_SIMDJSON_VERSION_H
|
|
#define SIMDJSON_SIMDJSON_VERSION_H
|
|
|
|
/** The version of simdjson being used (major.minor.revision) */
|
|
#define SIMDJSON_VERSION 2.2.0
|
|
|
|
namespace simdjson {
|
|
enum {
|
|
/**
|
|
* The major version (MAJOR.minor.revision) of simdjson being used.
|
|
*/
|
|
SIMDJSON_VERSION_MAJOR = 2,
|
|
/**
|
|
* The minor version (major.MINOR.revision) of simdjson being used.
|
|
*/
|
|
SIMDJSON_VERSION_MINOR = 2,
|
|
/**
|
|
* The revision (major.minor.REVISION) of simdjson being used.
|
|
*/
|
|
SIMDJSON_VERSION_REVISION = 0
|
|
};
|
|
} // namespace simdjson
|
|
|
|
#endif // SIMDJSON_SIMDJSON_VERSION_H
|