Core/ObjectRef: Remove static_assert

Former-commit-id: 5050ce7a786053725d7e18fcc943bfb2ce3fee69
This commit is contained in:
Lynix 2015-07-02 13:01:23 +02:00
parent 9a7c356f75
commit 1398ed7ebc
1 changed files with 0 additions and 2 deletions

View File

@ -14,8 +14,6 @@
template<typename T>
class NzObjectRef
{
static_assert(std::is_base_of<NzRefCounted, T>::value, "ObjectRef shall only be used with RefCounted-derived type");
public:
NzObjectRef();
NzObjectRef(T* object);