Skip to content

Commit

Permalink
Merge pull request #54 from open-telemetry/main
Browse files Browse the repository at this point in the history
[EXPORTER] Fix references in AttributeValueVisitor (open-telemetry#2985)
  • Loading branch information
malkia authored Jul 5, 2024
2 parents 4767b95 + 0ff58e8 commit bd75c28
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

0 comments on commit bd75c28

Please sign in to comment.