Fixed missing return statement

This commit is contained in:
Davis King 2016-06-07 12:08:40 -04:00
parent c772e4ae8a
commit ffb4434240

View File

@ -407,10 +407,7 @@ namespace dlib
if (shared_node->del)
return static_cast<D*>(shared_node->del->get_deleter_void(typeid(D)));
}
else
{
return 0;
}
return 0;
}
template <typename Y>