Skip to content

Commit

Permalink
squash: fix unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mhdawson authored and legendecas committed Aug 28, 2019
1 parent adfade7 commit f7d9fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napi-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -4098,7 +4098,7 @@ inline void AsyncProgressWorker<T>::Destroy() {
}

template<class T>
inline void AsyncProgressWorker<T>::WorkProgress_(Napi::Env env, Napi::Function jsCallback, void* _data) {
inline void AsyncProgressWorker<T>::WorkProgress_(Napi::Env /* env */, Napi::Function /* jsCallback */, void* _data) {
AsyncProgressWorker* self = static_cast<AsyncProgressWorker*>(_data);

T* data;
Expand Down

0 comments on commit f7d9fd4

Please sign in to comment.