| 235 | } |
| 236 | |
| 237 | opentelemetry::trace::StartSpanOptions SpanOptionsWithParent( |
| 238 | const util::tracing::Span& parent_span) { |
| 239 | opentelemetry::trace::StartSpanOptions options; |
| 240 | options.parent = UnwrapSpan(parent_span.details.get())->GetContext(); |
| 241 | return options; |
| 242 | } |
| 243 | |
| 244 | } // namespace tracing |
| 245 | } // namespace internal |
nothing calls this directly
no test coverage detected