Fixed a bug that Handle<T> cannot return nullptr

This commit is contained in:
yvt 2014-03-09 02:20:59 +09:00
parent be4a9952ce
commit b568d7485b

View File

@ -88,7 +88,6 @@ namespace spades {
Set(h.ptr, true);
}
operator T *() {
SPAssert(ptr != NULL);
return ptr;
}
T *Unmanage() {