Skip to content

Commit

Permalink
[EXPORTER] Fix references in AttributeValueVisitor (#2985)
Browse files Browse the repository at this point in the history
  • Loading branch information
meastp authored Jul 5, 2024
1 parent f6dca99 commit 0ff58e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class AttributeValueVisitor
print_value(arg, sout_);
}

void operator()(const nostd::string_view &&arg) { sout_.write(arg.data(), arg.size()); }
void operator()(nostd::string_view &&arg) { sout_.write(arg.data(), arg.size()); }

private:
std::ostream &sout_;
Expand Down

1 comment on commit 0ff58e8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp api Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 0ff58e8 Previous: f6dca99 Ratio
BM_SpinLockThrashing/4/process_time/real_time 1.665766729692523 ms/iter 0.6786021427135562 ms/iter 2.45
BM_NaiveSpinLockThrashing/4/process_time/real_time 1.6695626891485535 ms/iter 0.7884333210606729 ms/iter 2.12

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.