| 40 | }; |
| 41 | |
| 42 | struct IncludeFileRange { |
| 43 | unsigned start; |
| 44 | Path file_path; |
| 45 | unsigned offset; |
| 46 | unsigned length; |
| 47 | IncludeFileRange(unsigned _start, |
| 48 | unsigned _length, |
| 49 | unsigned _offset, |
| 50 | const Path &_file_path) |
| 51 | : start(_start), |
| 52 | file_path(_file_path), |
| 53 | offset(_offset), |
| 54 | length(_length) {} |
| 55 | }; |
| 56 | |
| 57 | typedef std::list<IncludeFileRange> FileRangeList; |
| 58 |
no outgoing calls
no test coverage detected