| 731 | }; |
| 732 | |
| 733 | struct summary_row |
| 734 | { |
| 735 | std::string filename; |
| 736 | std::string function_name; |
| 737 | int line{}; |
| 738 | int calls{}; |
| 739 | double percent_ae_bracket{}; // ae[center]% by configuration |
| 740 | double percent_ae_all{}; // ae[0-100]% |
| 741 | std::chrono::nanoseconds time_ae_all{}; |
| 742 | std::chrono::nanoseconds time_a_all{}; |
| 743 | }; |
| 744 | |
| 745 | struct summary_table |
| 746 | { |
nothing calls this directly
no outgoing calls
no test coverage detected