[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

View file

@ -87,12 +87,12 @@ struct string_key_case : internal::string_key_base {
namespace std { namespace std {
template <> 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(); } std::size_t operator()(const xe::string_key& t) const { return t.hash(); }
}; };
template <> 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 { std::size_t operator()(const xe::string_key_case& t) const {
return t.hash(); return t.hash();
} }