Fix clang-tidy modernize-use-override warnings

This commit is contained in:
Eduardo Almeida
2022-10-06 21:39:37 +00:00
parent 6bb6383562
commit be07b6487a
1008 changed files with 6398 additions and 6398 deletions

View File

@@ -32,7 +32,7 @@ class TutorialApp : public Application
{
public:
TutorialApp ();
virtual ~TutorialApp ();
~TutorialApp () override;
/**
* Register this type.
@@ -51,8 +51,8 @@ public:
void Setup (Ptr<Socket> socket, Address address, uint32_t packetSize, uint32_t nPackets, DataRate dataRate);
private:
virtual void StartApplication ();
virtual void StopApplication ();
void StartApplication () override;
void StopApplication () override;
/// Schedule a new transmission.
void ScheduleTx ();