| 25 | } |
| 26 | |
| 27 | DebugInfo icinga::DebugInfoRange(const DebugInfo& start, const DebugInfo& end) |
| 28 | { |
| 29 | DebugInfo result; |
| 30 | result.Path = start.Path; |
| 31 | result.FirstLine = start.FirstLine; |
| 32 | result.FirstColumn = start.FirstColumn; |
| 33 | result.LastLine = end.LastLine; |
| 34 | result.LastColumn = end.LastColumn; |
| 35 | return result; |
| 36 | } |
| 37 | |
| 38 | #define EXTRA_LINES 2 |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected