| 1084 | |
| 1085 | template <typename Type> |
| 1086 | class IdTraits |
| 1087 | { |
| 1088 | public: |
| 1089 | constexpr static auto |
| 1090 | #if defined(__has_feature) |
| 1091 | #if __has_feature(address_sanitizer) |
| 1092 | __attribute__((no_sanitize_address)) |
| 1093 | #endif |
| 1094 | #endif |
| 1095 | equal(Type const &lhs, Type const &rhs) |
| 1096 | { |
| 1097 | return lhs == rhs; |
| 1098 | } |
| 1099 | }; |
| 1100 | |
| 1101 | template <typename Type> |
| 1102 | class Id |
nothing calls this directly
no outgoing calls
no test coverage detected