mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-22 00:11:36 +00:00
Remove unused member functions from MWMechanics::DerivedClassStorage
This commit is contained in:
parent
2ef2e93a46
commit
e11fbc10b1
1 changed files with 1 additions and 13 deletions
|
@ -1,8 +1,6 @@
|
||||||
#ifndef AISTATE_H
|
#ifndef AISTATE_H
|
||||||
#define AISTATE_H
|
#define AISTATE_H
|
||||||
|
|
||||||
#include <typeinfo>
|
|
||||||
|
|
||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -63,17 +61,7 @@ namespace MWMechanics
|
||||||
delete mStorage;
|
delete mStorage;
|
||||||
mStorage = p;
|
mStorage = p;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const
|
|
||||||
{
|
|
||||||
return mStorage == nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
const std::type_info& getType() const
|
|
||||||
{
|
|
||||||
return typeid(mStorage);
|
|
||||||
}
|
|
||||||
|
|
||||||
DerivedClassStorage():mStorage(nullptr){}
|
DerivedClassStorage():mStorage(nullptr){}
|
||||||
~DerivedClassStorage()
|
~DerivedClassStorage()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue