[ox/event] Comment out Signal disconnect warning
All checks were successful
Build / build (push) Successful in 3m29s

This commit is contained in:
Gary Talent 2024-08-27 19:58:14 -05:00
parent c501fc048f
commit eb498ca557

View File

@ -264,8 +264,8 @@ class Signal<Error(Args...)> {
}
void cleanup(Signal *signal) noexcept final {
auto err = m_receiver->destruction.disconnectSignal(signal);
oxErrorf("{}", toStr(err));
std::ignore = m_receiver->destruction.disconnectSignal(signal);
//oxErrorf("{}", toStr(err));
//oxAssert(err, "Signal could not notify receiver that it is being destroyed. Destruction of receiver will cause use-after-free.");
}