From 8d43a4aa264196fa2bed62adf08f34a57d37ac67 Mon Sep 17 00:00:00 2001 From: Oliver Zhang Date: Mon, 22 Jun 2020 15:15:08 +0000 Subject: [PATCH] style fix --- sdk/include/opentelemetry/sdk/trace/sampler.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/include/opentelemetry/sdk/trace/sampler.h b/sdk/include/opentelemetry/sdk/trace/sampler.h index abe02fc6de..81a9ef9d52 100644 --- a/sdk/include/opentelemetry/sdk/trace/sampler.h +++ b/sdk/include/opentelemetry/sdk/trace/sampler.h @@ -52,8 +52,7 @@ class Sampler { public: // Placeholder - class SpanContext - {}; + class SpanContext; virtual ~Sampler() = default; /** * Called during Span creation to make a sampling decision. @@ -64,7 +63,7 @@ class Sampler * the parentContext, unless this is a root span. * @param name the name of the new Span. * @param spanKind the trace_api::SpanKind of the Span. - * @param attributes // TODO: Change AttributeKeyValue to common::AttributeKeyValue + * @param attributes TODO: Change AttributeKeyValue to common::AttributeKeyValue * list of AttributeValue with their keys. * @param links TODO: Collection of links that will be associated with the Span to be created. * @return sampling result whether span should be sampled or not.