Annotation for function names
| 50 | |
| 51 | /// Annotation for function names |
| 52 | struct name { |
| 53 | const char *value; |
| 54 | explicit name(const char *value) : value(value) {} |
| 55 | }; |
| 56 | |
| 57 | /// Annotation indicating that a function is an overload associated with a given "sibling" |
| 58 | struct sibling { |
no outgoing calls
no test coverage detected