MCPcopy Create free account
hub / github.com/BowenFu/matchit.cpp / IdTraits

Class IdTraits

include/matchit.h:1086–1099  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected