| 2695 | struct Line { |
| 2696 | |
| 2697 | Line() : |
| 2698 | binary(false), |
| 2699 | offset(0), |
| 2700 | ptr(NULL), |
| 2701 | size(0) |
| 2702 | { } |
| 2703 | |
| 2704 | bool binary; // before context binary line |
| 2705 | size_t offset; // before context offset of line |
nothing calls this directly
no outgoing calls
no test coverage detected