1- /* auto-generated on Fri Mar 8 19:04:53 PST 2019 . Do not edit! */
1+ /* auto-generated on Wed 13 Mar 2019 20:02:04 EDT . Do not edit! */
22/* begin file include/simdjson/simdjson_version.h */
33// /include/simdjson/simdjson_version.h automatically generated by release.py, do not change by hand
44#ifndef SIMDJSON_INCLUDE_SIMDJSON_VERSION
55#define SIMDJSON_INCLUDE_SIMDJSON_VERSION
6- #define SIMDJSON_VERSION = 0.0.1,
6+ #define SIMDJSON_VERSION 0.1.0
77enum {
88 SIMDJSON_VERSION_MAJOR = 0,
9- SIMDJSON_VERSION_MINOR = 0 ,
10- SIMDJSON_VERSION_REVISION = 1
9+ SIMDJSON_VERSION_MINOR = 1 ,
10+ SIMDJSON_VERSION_REVISION = 0
1111};
1212#endif // SIMDJSON_INCLUDE_SIMDJSON_VERSION
1313/* end file include/simdjson/simdjson_version.h */
@@ -27,7 +27,8 @@ struct simdjson {
2727 static const std::string& errorMsg(const int);
2828};
2929
30- #endif/* end file include/simdjson/simdjson.h */
30+ #endif
31+ /* end file include/simdjson/simdjson.h */
3132/* begin file include/simdjson/portability.h */
3233#ifndef SIMDJSON_PORTABILITY_H
3334#define SIMDJSON_PORTABILITY_H
@@ -35727,7 +35728,7 @@ static inline void avx_count_nibbles(__m256i bytes,
3572735728
3572835729// check whether the current bytes are valid UTF-8
3572935730// at the end of the function, previous gets updated
35730- static struct avx_processed_utf_bytes
35731+ static inline struct avx_processed_utf_bytes
3573135732avxcheckUTF8Bytes(__m256i current_bytes,
3573235733 struct avx_processed_utf_bytes *previous,
3573335734 __m256i *has_error) {
@@ -36687,11 +36688,6 @@ static really_inline bool parse_number(const uint8_t *const buf,
3668736688 unsigned char digit = *p - '0';
3668836689 expnumber = digit;
3668936690 p++;
36690- while (is_integer(*p)) {
36691- digit = *p - '0';
36692- expnumber = 10 * expnumber + digit;
36693- ++p;
36694- }
3669536691 if (is_integer(*p)) {
3669636692 digit = *p - '0';
3669736693 expnumber = 10 * expnumber + digit;
0 commit comments