| 298 | |
| 299 | template <typename... Args> |
| 300 | auto MakeError(LPCSTR fmt, Args&&... args) const { // // // |
| 301 | CStringA str = FormattedA("Line %d column %d: ", line, GetColumn()); |
| 302 | AppendFormatA(str, fmt, std::forward<Args>(args)...); |
| 303 | return std::runtime_error {(LPCSTR)str}; |
| 304 | } |
| 305 | |
| 306 | stChanNote ImportCellText(unsigned fxMax, stChannelID chan) { // // // |
| 307 | stChanNote Cell; // // // |
no test coverage detected