Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
sudo ./ci/install_gcc48.sh
- name: run tests
run: ./ci/do_ci.sh bazel.legacy.test
env:
CC: /usr/bin/gcc-4.8

bazel_test:
name: Bazel
Expand Down
2 changes: 1 addition & 1 deletion exporters/ostream/src/span_exporter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace exporter
namespace trace
{
OStreamSpanExporter::OStreamSpanExporter(std::ostream &sout) noexcept
: sout_{sout} {}
: sout_(sout) {}

std::unique_ptr<sdktrace::Recordable> OStreamSpanExporter::MakeRecordable() noexcept
{
Expand Down