mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 16:45:08 +00:00
LibGUI: Don't assert in ~GWidgetClassRegistration
These guys are all declared as globals, and their ASSERT_NOT_REACHED in the destructor doesn't play nice with __cxa_atexit. As in, every application will assert in __cxa_finalize if this assert isn't removed.
This commit is contained in:
parent
824bbc7462
commit
7edfdca4b2
1 changed files with 0 additions and 1 deletions
|
@ -50,7 +50,6 @@ GWidgetClassRegistration::GWidgetClassRegistration(const String& class_name, Fun
|
|||
|
||||
GWidgetClassRegistration::~GWidgetClassRegistration()
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
void GWidgetClassRegistration::for_each(Function<void(const GWidgetClassRegistration&)> callback)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue