Skip to content

Commit

Permalink
Fix unused variable warning (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
orgads authored Oct 31, 2024
1 parent cd2941b commit 1d66b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/lib_handle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ auto LibHandle::TestHang() -> Local<Value> {
// NOLINTNEXTLINE(readability-convert-member-functions-to-static)
auto LibHandle::TestOOM() -> Local<Value> {
Isolate* isolate = Isolate::GetCurrent();
for (int ii = 0; ; ++ii) {
for (;;) {
Array::New(isolate, 128);
}
return {};
Expand Down

0 comments on commit 1d66b00

Please sign in to comment.