[Base] Fix namespacing
This commit is contained in:
parent
a86d7173e1
commit
4fb5244176
|
@ -87,12 +87,12 @@ struct string_key_case : internal::string_key_base {
|
|||
|
||||
namespace std {
|
||||
template <>
|
||||
struct std::hash<xe::string_key> {
|
||||
struct hash<xe::string_key> {
|
||||
std::size_t operator()(const xe::string_key& t) const { return t.hash(); }
|
||||
};
|
||||
|
||||
template <>
|
||||
struct std::hash<xe::string_key_case> {
|
||||
struct hash<xe::string_key_case> {
|
||||
std::size_t operator()(const xe::string_key_case& t) const {
|
||||
return t.hash();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue