mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 13:00:08 +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
 |