Skip to content

Commit

Permalink
Fix link error. (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnburn authored Nov 21, 2019
1 parent 939e8d7 commit 96c0ab2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/lightstep/tracer.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ class LightStepTracer : public opentracing::Tracer {
opentracing::expected<std::unique_ptr<opentracing::SpanContext>>
MakeSpanContext(uint64_t trace_id, uint64_t span_id,
std::unordered_map<std::string, std::string>&& baggage) const
noexcept;
noexcept {
return this->MakeSpanContext(trace_id, span_id, true, std::move(baggage));
}

opentracing::expected<std::unique_ptr<opentracing::SpanContext>>
MakeSpanContext(uint64_t trace_id, uint64_t span_id, bool sampled,
Expand Down

0 comments on commit 96c0ab2

Please sign in to comment.