| 699 | } |
| 700 | |
| 701 | void TemplateException::set_line_if_missing(size_t line) |
| 702 | { |
| 703 | if (!m_line) |
| 704 | { |
| 705 | m_line = line; |
| 706 | m_reason = std::string("Line ") + std::to_string(line) + ": " + m_reason; |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | ////////////////////////////////////////////////////////////////////////// |
| 711 | // parse_path |
no outgoing calls
no test coverage detected