Skip to content

Commit 3d01b16

Browse files
victorgomespthier
authored andcommitted
Fix 2024-04-23 merge
1 parent 8e2c8b0 commit 3d01b16

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

deps/simdjson/unofficial.gni

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ template("simdjson_gn_build") {
1414
"scope",
1515
[ "simdjson.gyp" ])
1616

17-
source_set(target_name) {
17+
component(target_name) {
1818
forward_variables_from(invoker, "*")
1919
public_configs = [ ":simdjson_config" ]
2020
sources = gypi_values.simdjson_sources

src/inspector_profiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <optional>
1111
#include <unordered_set>
1212
#include "inspector_agent.h"
13-
#include "simdjson.h"
13+
#include "../../deps/simdjson/simdjson.h"
1414

1515
namespace node {
1616
// Forward declaration to break recursive dependency chain with src/env.h.

src/js_stream.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ void JSStream::Finish(const FunctionCallbackInfo<Value>& args) {
163163

164164

165165
void JSStream::ReadBuffer(const FunctionCallbackInfo<Value>& args) {
166-
v8::TryCatch try_catch(args.GetIsolate());
167166
JSStream* wrap;
168167
ASSIGN_OR_RETURN_UNWRAP(&wrap, args.This());
169168

0 commit comments

Comments
 (0)