| 106 | } |
| 107 | |
| 108 | void discard_comments(std::ifstream &fs) |
| 109 | { |
| 110 | while (fs.peek() == '#') |
| 111 | { |
| 112 | fs.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void discard_comments_and_spaces(std::ifstream &fs) |
| 117 | { |
no test coverage detected