1
0
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:
dpasukhi 2025-01-13 15:29:41 +00:00
parent d4197764ab
commit e9855c9335

View File

@ -148,5 +148,5 @@ Standard_Type::~Standard_Type ()
{
// remove descriptor from the registry
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",);
}