Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jsi/jsi/test/testlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ TEST_P(JSITest, ArrayBufferSizeTest) {
try {
// Ensure we can safely write some data to the buffer.
memset(ab.data(rt), 0xab, 10);
} catch (const JSINativeException& ex) {
} catch (const JSINativeException&) {
// data() is unimplemented by some runtimes, ignore such failures.
}

Expand Down
2 changes: 1 addition & 1 deletion src/NodeApiJsiRuntime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ bool NodeApiJsiRuntime::instanceOf(const jsi::Object &obj, const jsi::Function &
}

#if JSI_VERSION >= 11
void NodeApiJsiRuntime::setExternalMemoryPressure(const jsi::Object &obj, size_t amount) {
void NodeApiJsiRuntime::setExternalMemoryPressure(const jsi::Object &/*obj*/, size_t /*amount*/) {
// TODO: implement
}
#endif
Expand Down