| 1784 | static bool recent_report_any(df::unit *unit) |
| 1785 | { |
| 1786 | FOR_ENUM_ITEMS(unit_report_type, slot) |
| 1787 | { |
| 1788 | if (recent_report(unit, slot)) |
| 1789 | return true; |
| 1790 | } |
| 1791 | return false; |
| 1792 | } |
| 1793 |
nothing calls this directly
no test coverage detected