| 102 | struct CodeRange |
| 103 | { |
| 104 | CodeRange(): start(NULL), end(NULL){} |
| 105 | CodeRange(const char* start, const char* end): start(start), end(end){} |
| 106 | const char *start, *end; |
| 107 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected