| 67 | |
| 68 | |
| 69 | const char *Trace::get_string(string &buf, const char *prefix) |
| 70 | { |
| 71 | peek_string(buf, prefix); |
| 72 | |
| 73 | //cout << "buf is " << buf << std::endl; |
| 74 | // read next line (and detect eof early) |
| 75 | _line++; |
| 76 | getline(*fs, line); |
| 77 | //cout << "next line is " << line << std::endl; |
| 78 | |
| 79 | return buf.c_str(); |
| 80 | } |
no test coverage detected