Skip to content

Commit

Permalink
Merge branch 'main' into undeprecate-jeager-exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalff authored Oct 8, 2024
2 parents ad69883 + 3d9c2b5 commit b871904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/include/opentelemetry/trace/default_span.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ class DefaultSpan : public Span
DefaultSpan(SpanContext span_context) noexcept : span_context_(span_context) {}

// movable and copiable
DefaultSpan(DefaultSpan &&spn) noexcept : span_context_(spn.GetContext()) {}
DefaultSpan(const DefaultSpan &spn) noexcept : span_context_(spn.GetContext()) {}
DefaultSpan(DefaultSpan &&spn) noexcept : Span(), span_context_(spn.GetContext()) {}
DefaultSpan(const DefaultSpan &spn) noexcept : Span(), span_context_(spn.GetContext()) {}

private:
SpanContext span_context_;
Expand Down

0 comments on commit b871904

Please sign in to comment.