| 2941 | struct Match { |
| 2942 | |
| 2943 | Match(size_t pos, size_t size, size_t offset) |
| 2944 | : |
| 2945 | pos(pos), |
| 2946 | size(size), |
| 2947 | offset(offset) |
| 2948 | { } |
| 2949 | |
| 2950 | size_t pos; // position on the line |
| 2951 | size_t size; // size of the match |
nothing calls this directly
no outgoing calls
no test coverage detected