Skip to content

Commit

Permalink
chore: fix abundant override on destructors
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers committed Dec 13, 2023
1 parent 13d44b9 commit b97dc31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infra/stream/BufferingStreamReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace infra
{
public:
BufferingStreamReader(infra::BoundedDeque<uint8_t>& buffer, infra::StreamReaderWithRewinding& input);
~BufferingStreamReader() override;
~BufferingStreamReader();

// Implementation of StreamReaderWithRewinding
void Extract(infra::ByteRange range, infra::StreamErrorPolicy& errorPolicy) override;
Expand Down
2 changes: 1 addition & 1 deletion protobuf/echo/Echo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace services
{
public:
explicit EchoOnStreams(services::MethodSerializerFactory& serializerFactory, const EchoErrorPolicy& errorPolicy = echoErrorPolicyAbortOnMessageFormatError);
~EchoOnStreams() override;
~EchoOnStreams();

// Implementation of Echo
void RequestSend(ServiceProxy& serviceProxy) override;
Expand Down
2 changes: 1 addition & 1 deletion protobuf/echo/test_doubles/EchoSingleLoopback.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace application
{
public:
using services::EchoOnStreams::EchoOnStreams;
~EchoSingleLoopback() override;
~EchoSingleLoopback();

protected:
// Implementation of services::EchoOnStreams
Expand Down

0 comments on commit b97dc31

Please sign in to comment.