mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Foundation Classes - Standard_Type destructor static_assert #255
Fix assertion logic in Standard_Type destructor for registry unbinding
This commit is contained in:
parent
d4197764ab
commit
e9855c9335
@ -148,5 +148,5 @@ Standard_Type::~Standard_Type ()
|
|||||||
{
|
{
|
||||||
// remove descriptor from the registry
|
// remove descriptor from the registry
|
||||||
registry_type& aRegistry = GetRegistry();
|
registry_type& aRegistry = GetRegistry();
|
||||||
Standard_ASSERT(!aRegistry.UnBind(mySystemName), "Standard_Type::~Standard_Type() cannot find itself in registry",);
|
Standard_ASSERT(aRegistry.UnBind(mySystemName), "Standard_Type::~Standard_Type() cannot find itself in registry",);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user