| 1801 | |
| 1802 | #if DEBUG_DI |
| 1803 | void printPathStr(const pathstr_t &p, const char* fmt, ...) |
| 1804 | { |
| 1805 | qstring m; |
| 1806 | va_list va; |
| 1807 | va_start(va, fmt); |
| 1808 | m.cat_vsprnt(fmt, va); |
| 1809 | va_end(va); |
| 1810 | |
| 1811 | qstring path = getPathStr(p); |
| 1812 | msg("[hrt] %s pathstr: %s\n", m.c_str(), path.c_str()); |
| 1813 | } |
| 1814 | |
| 1815 | void printInlines() |
| 1816 | { |
nothing calls this directly
no test coverage detected