dtoolbase: remove TypeHandle::_none symbol, no longer needed

This commit is contained in:
rdb 2018-09-23 13:50:06 +02:00
parent d6b7abedfe
commit 77724f49dc
2 changed files with 0 additions and 6 deletions

View File

@ -15,9 +15,6 @@
#include "typeRegistryNode.h"
#include "atomicAdjust.h"
// This is initialized to zero by static initialization.
TypeHandle TypeHandle::_none;
/**
* Returns the total allocated memory used by objects of this type, for the
* indicated memory class. This is only updated if track-memory-usage is set

View File

@ -147,9 +147,6 @@ public:
private:
constexpr TypeHandle(int index);
// Only kept temporarily for ABI compatibility.
static TypeHandle _none;
int _index;
friend class TypeRegistry;
};