Skip to content

Commit

Permalink
build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalff committed Jan 17, 2025
1 parent 7f342ea commit d6bbd4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exporters/otlp/test/otlp_grpc_exporter_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class OtlpMockTraceServiceStub : public proto::collector::trace::v1::MockTraceSe
public:
async_interface(OtlpMockTraceServiceStub *owner) : stub_(owner) {}

virtual ~async_interface() {}
virtual ~async_interface() override = default;

void Export(
::grpc::ClientContext *context,
Expand Down
4 changes: 2 additions & 2 deletions exporters/otlp/test/otlp_grpc_log_record_exporter_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class OtlpMockTraceServiceStub : public proto::collector::trace::v1::MockTraceSe
public:
async_interface(OtlpMockTraceServiceStub *owner) : stub_(owner) {}

virtual ~async_interface() {}
virtual ~async_interface() override = default;

void Export(
::grpc::ClientContext *context,
Expand Down Expand Up @@ -132,7 +132,7 @@ class OtlpMockLogsServiceStub : public proto::collector::logs::v1::MockLogsServi
public:
async_interface(OtlpMockLogsServiceStub *owner) : stub_(owner) {}

virtual ~async_interface() {}
virtual ~async_interface() override = default;

void Export(
::grpc::ClientContext *context,
Expand Down

0 comments on commit d6bbd4a

Please sign in to comment.