supercell-wx/wxdata/include/scwx/util/hash.hpp
2022-10-02 23:12:41 -05:00

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