1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00

Missing virtual destructor implementation

This commit is contained in:
Mordred Admin 2018-02-09 08:32:28 +01:00
parent e1dafd3d5e
commit 3ef490693b

View file

@ -51,7 +51,7 @@ namespace Core {
public:
GameObject( ObjKind type );
virtual ~GameObject();
virtual ~GameObject() {};
uint32_t getId() const;
@ -75,4 +75,4 @@ namespace Core {
}
}
#endif
#endif