Skip to content

Commit

Permalink
unbreak
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolduc committed Feb 22, 2024
1 parent 1818ac4 commit ab35f44
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions google/cloud/opentelemetry/internal/recordable.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <google/devtools/cloudtrace/v2/trace.pb.h>
#include <google/devtools/cloudtrace/v2/tracing.pb.h>
#include <opentelemetry/common/attribute_value.h>
#include <opentelemetry/version.h>
#include <opentelemetry/sdk/trace/recordable.h>

namespace google {
Expand Down Expand Up @@ -126,6 +127,11 @@ class Recordable final : public opentelemetry::sdk::trace::Recordable {

void SetName(opentelemetry::nostd::string_view name) noexcept override;

#if OPENTELEMETRY_VERSION_MAJOR > 1 || \
(OPENTELEMETRY_VERSION_MAJOR == 1 && OPENTELEMETRY_VERSION_MINOR >= 14)
void SetTraceFlags(opentelemetry::trace::TraceFlags) noexcept override {}
#endif

void SetSpanKind(opentelemetry::trace::SpanKind span_kind) noexcept override;

void SetResource(
Expand Down

0 comments on commit ab35f44

Please sign in to comment.