| 27 | namespace { |
| 28 | |
| 29 | Status StraddlingTooLarge() { |
| 30 | return Status::Invalid( |
| 31 | "straddling object straddles two block boundaries (try to increase block size?)"); |
| 32 | } |
| 33 | |
| 34 | class NewlineBoundaryFinder : public BoundaryFinder { |
| 35 | public: |
no test coverage detected