@@ -170,7 +170,8 @@ void HistogramBase::RecordDelta(const FunctionCallbackInfo<Value>& args) {
170
170
(*histogram)->RecordDelta ();
171
171
}
172
172
173
- void HistogramBase::FastRecordDelta (Local<Value> receiver) {
173
+ void HistogramBase::FastRecordDelta (Local<Value> unused,
174
+ Local<Value> receiver) {
174
175
HistogramBase* histogram;
175
176
ASSIGN_OR_RETURN_UNWRAP (&histogram, receiver);
176
177
(*histogram)->RecordDelta ();
@@ -190,7 +191,8 @@ void HistogramBase::Record(const FunctionCallbackInfo<Value>& args) {
190
191
(*histogram)->Record (value);
191
192
}
192
193
193
- void HistogramBase::FastRecord (Local<Value> receiver,
194
+ void HistogramBase::FastRecord (Local<Value> unused,
195
+ Local<Value> receiver,
194
196
const int64_t value,
195
197
FastApiCallbackOptions& options) {
196
198
if (value < 1 ) {
@@ -438,7 +440,9 @@ void IntervalHistogram::Start(const FunctionCallbackInfo<Value>& args) {
438
440
histogram->OnStart (args[0 ]->IsTrue () ? StartFlags::RESET : StartFlags::NONE);
439
441
}
440
442
441
- void IntervalHistogram::FastStart (Local<Value> receiver, bool reset) {
443
+ void IntervalHistogram::FastStart (Local<Value> unused,
444
+ Local<Value> receiver,
445
+ bool reset) {
442
446
IntervalHistogram* histogram;
443
447
ASSIGN_OR_RETURN_UNWRAP (&histogram, receiver);
444
448
histogram->OnStart (reset ? StartFlags::RESET : StartFlags::NONE);
@@ -450,7 +454,7 @@ void IntervalHistogram::Stop(const FunctionCallbackInfo<Value>& args) {
450
454
histogram->OnStop ();
451
455
}
452
456
453
- void IntervalHistogram::FastStop (Local<Value> receiver) {
457
+ void IntervalHistogram::FastStop (Local<Value> unused, Local<Value> receiver) {
454
458
IntervalHistogram* histogram;
455
459
ASSIGN_OR_RETURN_UNWRAP (&histogram, receiver);
456
460
histogram->OnStop ();
@@ -566,42 +570,45 @@ void HistogramImpl::DoReset(const FunctionCallbackInfo<Value>& args) {
566
570
(*histogram)->Reset ();
567
571
}
568
572
569
- void HistogramImpl::FastReset (Local<Value> receiver) {
573
+ void HistogramImpl::FastReset (Local<Value> unused, Local<Value> receiver) {
570
574
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
571
575
(*histogram)->Reset ();
572
576
}
573
577
574
- double HistogramImpl::FastGetCount (Local<Value> receiver) {
578
+ double HistogramImpl::FastGetCount (Local<Value> unused, Local<Value> receiver) {
575
579
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
576
580
return static_cast <double >((*histogram)->Count ());
577
581
}
578
582
579
- double HistogramImpl::FastGetMin (Local<Value> receiver) {
583
+ double HistogramImpl::FastGetMin (Local<Value> unused, Local<Value> receiver) {
580
584
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
581
585
return static_cast <double >((*histogram)->Min ());
582
586
}
583
587
584
- double HistogramImpl::FastGetMax (Local<Value> receiver) {
588
+ double HistogramImpl::FastGetMax (Local<Value> unused, Local<Value> receiver) {
585
589
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
586
590
return static_cast <double >((*histogram)->Max ());
587
591
}
588
592
589
- double HistogramImpl::FastGetMean (Local<Value> receiver) {
593
+ double HistogramImpl::FastGetMean (Local<Value> unused, Local<Value> receiver) {
590
594
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
591
595
return (*histogram)->Mean ();
592
596
}
593
597
594
- double HistogramImpl::FastGetExceeds (Local<Value> receiver) {
598
+ double HistogramImpl::FastGetExceeds (Local<Value> unused,
599
+ Local<Value> receiver) {
595
600
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
596
601
return static_cast <double >((*histogram)->Exceeds ());
597
602
}
598
603
599
- double HistogramImpl::FastGetStddev (Local<Value> receiver) {
604
+ double HistogramImpl::FastGetStddev (Local<Value> unused,
605
+ Local<Value> receiver) {
600
606
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
601
607
return (*histogram)->Stddev ();
602
608
}
603
609
604
- double HistogramImpl::FastGetPercentile (Local<Value> receiver,
610
+ double HistogramImpl::FastGetPercentile (Local<Value> unused,
611
+ Local<Value> receiver,
605
612
const double percentile) {
606
613
HistogramImpl* histogram = HistogramImpl::FromJSObject (receiver);
607
614
return static_cast <double >((*histogram)->Percentile (percentile));
0 commit comments