Skip to content

Commit

Permalink
Reformat to unname unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
nholbrook committed Jun 26, 2020
1 parent 6cf3542 commit 61c95a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdk/include/opentelemetry/sdk/trace/always_off_sampler.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class AlwaysOffSampler : public Sampler
* @return Returns NOT_RECORD always
*/
SamplingResult ShouldSample(
const SpanContext *parent_context,
trace_api::TraceId trace_id,
nostd::string_view name,
trace_api::SpanKind span_kind,
const trace_api::KeyValueIterable &attributes) noexcept override
const SpanContext * /*parent_context*/,
trace_api::TraceId /*trace_id*/,
nostd::string_view /*name*/,
trace_api::SpanKind /*span_kind*/,
const trace_api::KeyValueIterable & /*attributes*/) noexcept override
{
return { Decision::NOT_RECORD, nullptr };
}
Expand Down

0 comments on commit 61c95a9

Please sign in to comment.