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 04546dc commit adfade7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/asyncprogressworker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class TestWorker : public AsyncProgressWorker<ProgressData> {
std::this_thread::sleep_for(std::chrono::seconds(1));
}

void OnProgress(const ProgressData* data, size_t count) override {
void OnProgress(const ProgressData* data, size_t /* count */) override {
FunctionReference& callback = Callback();
Napi::Env env = Env();
if (!callback.IsEmpty()) {
Expand Down

0 comments on commit adfade7

Please sign in to comment.