* */
| 118 | * |
| 119 | */ |
| 120 | bool |
| 121 | SimpleDeltaSequence::empty_line(const std::string &line) |
| 122 | { |
| 123 | if (line.empty()) |
| 124 | return true; |
| 125 | size_t found = line.find_first_not_of("\t\n "); |
| 126 | return (found == string::npos); |
| 127 | } |
| 128 | |
| 129 | void |
| 130 | SimpleDeltaSequence::init_sequence() |
nothing calls this directly
no outgoing calls
no test coverage detected