Skip to content

Commit a4e231b

Browse files
committed
Merge tag '0.0.6' into HaxeFoundation/master
2 parents 66db439 + 0557266 commit a4e231b

4 files changed

Lines changed: 17752 additions & 13064 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package="hx-lua-simdjson"
2-
version="0.0.5-1"
2+
version="0.0.6-1"
33
source = {
44
url = "git://github.com/HaxeFoundation/hx-lua-simdjson",
5-
tag = "0.0.5"
5+
tag = "0.0.6"
66
}
77
description = {
88
summary = "This is a simple Haxe-specific Lua binding for simdjson",

src/hxluasimdjson.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "hxluasimdjson.h"
1616

1717
#define LUA_SIMDJSON_NAME "hxsimdjson"
18-
#define LUA_SIMDJSON_VERSION "0.0.5"
18+
#define LUA_SIMDJSON_VERSION "0.0.6"
1919

2020
using namespace simdjson;
2121

@@ -136,9 +136,6 @@ void convert_ondemand_element_to_table(lua_State *L, T& element) {
136136
// calling is_null().value() will trigger an exception if the value is invalid
137137
if (element.is_null().value()) {
138138
lua_pushnil(L);
139-
} else {
140-
// workaround for simdjson 3.10.1
141-
throw simdjson_error(INCORRECT_TYPE);
142139
}
143140
break;
144141
}

0 commit comments

Comments
 (0)