* Compute the input checksum. * This is called as an assert so it for is debug config only */
| 6278 | * This is called as an assert so it for is debug config only |
| 6279 | */ |
| 6280 | bool ASFormatter::computeChecksumIn(const string ¤tLine_) |
| 6281 | { |
| 6282 | for (size_t i = 0; i < currentLine_.length(); i++) |
| 6283 | if (!isWhiteSpace(currentLine_[i])) |
| 6284 | checksumIn += currentLine_[i]; |
| 6285 | return true; |
| 6286 | } |
| 6287 | |
| 6288 | /** |
| 6289 | * Adjust the input checksum for deleted chars. |
nothing calls this directly
no outgoing calls
no test coverage detected