mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:50:06 +00:00
21 lines
301 B
C++
21 lines
301 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
template<class Key>
|
|
struct hash;
|
|
|
|
template<>
|
|
struct hash<std::pair<std::string, std::string>>
|
|
{
|
|
size_t operator()(const std::pair<std::string, std::string>& x) const;
|
|
};
|
|
|
|
} // namespace util
|
|
} // namespace scwx
|