Skip to content

Commit 6706b22

Browse files
authored
src: mark unused private field as such
Refs: #59828 PR-URL: #60802 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 9c25002 commit 6706b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ class NODE_EXTERN CallbackScope {
14621462
CallbackScope(CallbackScope&&) = delete;
14631463

14641464
private:
1465-
void* resource_storage_global_;
1465+
[[maybe_unused]] void* reserved_;
14661466
union {
14671467
v8::Local<v8::Object> local;
14681468
v8::Global<v8::Object>* global_ptr;

0 commit comments

Comments
 (0)