mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:18:12 +00:00
LibCore: Do not assert that NonnullRefPtr is non-null
Clang complains about this; with the change the next commit is going to make to ASSERT() internals, GCC is going to start to complain as well.
This commit is contained in:
parent
0fb4a808ef
commit
b319aca81a
1 changed files with 0 additions and 3 deletions
|
@ -331,9 +331,6 @@ void EventLoop::pump(WaitMode mode)
|
|||
|
||||
for (size_t i = 0; i < events.size(); ++i) {
|
||||
auto& queued_event = events.at(i);
|
||||
#ifndef __clang__
|
||||
ASSERT(queued_event.event);
|
||||
#endif
|
||||
auto* receiver = queued_event.receiver.ptr();
|
||||
auto& event = *queued_event.event;
|
||||
#ifdef CEVENTLOOP_DEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue