Andreas Kling
1d468ed6d3
AK: Stop allowing implicit downcast with RefPtr and NonnullRefPtr
...
We were allowing this dangerous kind of thing:
RefPtr<Base> base;
RefPtr<Derived> derived = base;
This patch changes the {Nonnull,}RefPtr constructors so this is no
longer possible.
To downcast one of these pointers, there is now static_ptr_cast<T>:
RefPtr<Derived> derived = static_ptr_cast<Derived>(base);
Fixing this exposed a ton of cowboy-downcasts in various places,
which we're now forced to fix. :^)
2020-04-05 11:19:00 +02:00
..
2020-04-04 23:54:58 +02:00
2020-04-04 23:54:58 +02:00
2020-03-07 10:32:51 +01:00
2020-03-07 10:32:51 +01:00
2020-03-07 10:32:51 +01:00
2020-03-22 19:12:10 +01:00
2020-04-05 11:19:00 +02:00
2020-04-04 22:12:37 +02:00
2020-03-28 09:13:29 +01:00
2020-03-07 10:32:51 +01:00
2020-03-22 19:12:10 +01:00
2020-03-25 18:53:20 +01:00
2020-03-25 18:53:20 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-21 18:17:18 +01:00
2020-03-22 19:53:22 +01:00
2020-03-18 20:20:35 +01:00
2020-03-18 20:20:35 +01:00
2020-03-22 19:53:22 +01:00
2020-03-22 19:53:22 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-25 09:54:46 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-04-03 23:06:09 +02:00
2020-04-03 23:06:09 +02:00
2020-04-03 23:06:09 +02:00
2020-04-03 23:06:09 +02:00
2020-03-22 19:12:10 +01:00
2020-03-22 19:12:10 +01:00
2020-03-21 18:17:18 +01:00
2020-03-22 19:53:22 +01:00
2020-03-25 18:48:32 +01:00
2020-04-03 23:06:09 +02:00
2020-03-28 09:13:29 +01:00
2020-03-25 18:52:03 +01:00
2020-03-25 18:52:03 +01:00
2020-03-07 10:32:51 +01:00
2020-03-22 19:12:10 +01:00
2020-04-05 00:56:16 +02:00
2020-04-05 00:56:16 +02:00