mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-22 04:31:15 +00:00
Fix -Wdelete-non-virtual-dtor warnings
delete called on 'idSIMDProcessor' that is abstract but has non-virtual destructor
This commit is contained in:
parent
25929447dc
commit
72b8adfd82
1 changed files with 1 additions and 0 deletions
|
@ -96,6 +96,7 @@ typedef enum {
|
|||
class idSIMDProcessor {
|
||||
public:
|
||||
idSIMDProcessor( void ) { cpuid = CPUID_NONE; }
|
||||
virtual ~idSIMDProcessor() { };
|
||||
|
||||
int cpuid;
|
||||
|
||||
|
|
Loading…
Reference in a new issue