mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-28 11:03:49 +00:00
Merge pull request #1287 from Azaezel/alpha41/destructorDefines
handle missing virtual destructors
This commit is contained in:
commit
b2fad6e3b9
2 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ struct Move
|
|||
bool trigger[MaxTriggerKeys];
|
||||
|
||||
Move();
|
||||
|
||||
virtual ~Move() {};
|
||||
virtual void pack(BitStream *stream, const Move * move = NULL);
|
||||
virtual void unpack(BitStream *stream, const Move * move = NULL);
|
||||
virtual void clamp();
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ class TheoraTexture : private IOutputStream< TheoraTextureFrame* >,
|
|||
|
||||
///
|
||||
AsyncState( const ThreadSafeRef< OggInputStream >& oggStream, bool looping = false );
|
||||
|
||||
virtual ~AsyncState() {};
|
||||
/// Return the Theora decoder substream.
|
||||
OggTheoraDecoder* getTheora() const { return mTheoraDecoder; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue