mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[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 {
|
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();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue