* Remove engine announcements for invalid engines. */
| 1054 | * Remove engine announcements for invalid engines. |
| 1055 | */ |
| 1056 | void DeleteInvalidEngineNews() |
| 1057 | { |
| 1058 | DeleteNews([](const auto &ni) { |
| 1059 | return IsInvalidEngineNews(ni.ref1) || IsInvalidEngineNews(ni.ref2); |
| 1060 | }); |
| 1061 | } |
| 1062 | |
| 1063 | static void RemoveOldNewsItems() |
| 1064 | { |
no test coverage detected