[Base] Fix namespacing

This commit is contained in:
Joel Linn 2021-05-05 13:49:07 +02:00 committed by Rick Gibbed
parent a86d7173e1
commit 4fb5244176
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}