Annotation indicating that a function is an overload associated with a given "sibling"
| 56 | |
| 57 | /// Annotation indicating that a function is an overload associated with a given "sibling" |
| 58 | struct sibling { |
| 59 | handle value; |
| 60 | explicit sibling(const handle &value) : value(value.ptr()) {} |
| 61 | }; |
| 62 | |
| 63 | /// Annotation indicating that a class derives from another given type |
| 64 | template <typename T> |
no outgoing calls
no test coverage detected