| 1770 | // stringtable entry); the dangling tag absorbs trailing markup but the sections |
| 1771 | // parsed so far still render. Warn rather than abort. |
| 1772 | if (item.context != HTMLNone || stack.Size() != 0) |
| 1773 | { |
| 1774 | LOG_WARN(UI, "Malformed briefing HTML '{}': unbalanced tags (context {}, {} open)", (const char*)_filename, |
| 1775 | (int)item.context, stack.Size()); |
| 1776 | } |
| 1777 | |
| 1778 | for (int i = 0; i < _sections.Size(); i++) |
no test coverage detected