| 812 | #include <sstream> |
| 813 | |
| 814 | void _debug_multiline(int line, code_part part, const char *function, const std::string &multilineString) |
| 815 | { |
| 816 | std::stringstream ss(multilineString); |
| 817 | std::string to; |
| 818 | |
| 819 | while(std::getline(ss,to,'\n')){ |
| 820 | _debug(line, part, function, "%s", to.c_str()); |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | #if defined(__EMSCRIPTEN__) |
| 825 |
no test coverage detected