| 36 | { |
| 37 | |
| 38 | std::string::const_iterator skipLineOrEOS( |
| 39 | std::string::const_iterator _nlPos, |
| 40 | std::string::const_iterator _end |
| 41 | ) |
| 42 | { |
| 43 | return (_nlPos == _end) ? _end : ++_nlPos; |
| 44 | } |
| 45 | |
| 46 | std::string::const_iterator firstNonIdentifier( |
| 47 | std::string::const_iterator _pos, |
no outgoing calls
no test coverage detected