| 239 | { |
| 240 | |
| 241 | void moveForward(std::istringstream& ss, std::string::size_type count) |
| 242 | { |
| 243 | for (std::string::size_type i = 0; i < count; i++) |
| 244 | { |
| 245 | ss.get(); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | bool discardSpacesBefore(std::istringstream& ss, char nextChar) |
| 250 | { |