Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: remove unused variables #24355

Closed
wants to merge 1 commit into from
Closed

Commits on Nov 14, 2018

  1. src: remove unused variables

    Currently the following compiler warnings are generated:
    
    ../src/node_process.cc:799:16:
    warning: unused variable 'ary' [-Wunused-variable]
      Local<Array> ary = Array::New(args.GetIsolate());
                   ^
    1 warning generated.
    
    ../src/node_http2.cc:1294:16:
    warning: unused variable 'holder' [-Wunused-variable]
      Local<Array> holder = Array::New(isolate);
                   ^
    1 warning generated.
    
    This commit removes these unused variables.
    danbev committed Nov 14, 2018
    Configuration menu
    Copy the full SHA
    84a7ae2 View commit details
    Browse the repository at this point in the history