mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-23 21:35:34 +00:00
virtuals removed
virtuals removed and replaced with override where necessary, clang-tidy to the rescue.
This commit is contained in:
parent
88a43f3137
commit
efbe5e90f5
255 changed files with 2164 additions and 2164 deletions
|
|
@ -616,15 +616,15 @@ public:
|
|||
static void setLastError(const char *fmt,...);
|
||||
|
||||
void checkMaxRate();
|
||||
void handlePacket(BitStream *stream);
|
||||
void processRawPacket(BitStream *stream);
|
||||
void handleNotify(bool recvd);
|
||||
void handleConnectionEstablished();
|
||||
void keepAlive();
|
||||
void handlePacket(BitStream *stream) override;
|
||||
void processRawPacket(BitStream *stream) override;
|
||||
void handleNotify(bool recvd) override;
|
||||
void handleConnectionEstablished() override;
|
||||
void keepAlive() override;
|
||||
|
||||
const NetAddress *getNetAddress();
|
||||
void setNetAddress(const NetAddress *address);
|
||||
Net::Error sendPacket(BitStream *stream);
|
||||
Net::Error sendPacket(BitStream *stream) override;
|
||||
|
||||
private:
|
||||
void netAddressTableInsert();
|
||||
|
|
@ -643,7 +643,7 @@ public:
|
|||
|
||||
static void consoleInit();
|
||||
|
||||
void onRemove();
|
||||
void onRemove() override;
|
||||
|
||||
NetConnection();
|
||||
~NetConnection();
|
||||
|
|
@ -1052,8 +1052,8 @@ public:
|
|||
void stopRecording();
|
||||
void stopDemoPlayback();
|
||||
|
||||
virtual void writeDemoStartBlock(ResizeBitStream *stream);
|
||||
virtual bool readDemoStartBlock(BitStream *stream);
|
||||
void writeDemoStartBlock(ResizeBitStream *stream) override;
|
||||
bool readDemoStartBlock(BitStream *stream) override;
|
||||
virtual void demoPlaybackComplete();
|
||||
/// @}
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -287,14 +287,14 @@ public:
|
|||
NetObject();
|
||||
~NetObject();
|
||||
|
||||
virtual String describeSelf() const;
|
||||
String describeSelf() const override;
|
||||
|
||||
/// @name Miscellaneous
|
||||
/// @{
|
||||
DECLARE_CONOBJECT(NetObject);
|
||||
static void initPersistFields();
|
||||
bool onAdd();
|
||||
void onRemove();
|
||||
bool onAdd() override;
|
||||
void onRemove() override;
|
||||
/// @}
|
||||
|
||||
static void collapseDirtyList();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue