Skip to content

Commit

Permalink
pw_stream: Add missing override annotation
Browse files Browse the repository at this point in the history
Change-Id: If0004779097bf515fb324b68e21549184a9fffec
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/100781
Reviewed-by: Ted Pudlik <[email protected]>
Pigweed-Auto-Submit: Armando Montanez <[email protected]>
Commit-Queue: Auto-Submit <[email protected]>
  • Loading branch information
armandomontanez authored and CQ Bot Account committed Jul 1, 2022
1 parent 1230361 commit ba4803a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pw_stream/public/pw_stream/socket_stream.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SocketStream : public NonSeekableReaderWriter {
public:
constexpr SocketStream() = default;

~SocketStream() { Close(); }
~SocketStream() override { Close(); }

// Listen to the port and return after a client is connected
Status Serve(uint16_t port);
Expand Down

0 comments on commit ba4803a

Please sign in to comment.