blob: 82d024d86d29b6b858d94d0da4a084aa0ea2d831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "fstring.h"
#include "hash.h"
template<> uint32_t __calcHashCode<FString>( const FString &k )
{
return __calcHashCode( k.c_str() );
}
template<> bool __cmpHashKeys<FString>( const FString &a, const FString &b )
{
return a == b;
}
|