aboutsummaryrefslogtreecommitdiff
path: root/src/fstring.cpp
blob: 56d2173d5e00896e98923fbcfd371602689bed43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "fstring.h"
#include "hash.h"

template<> uint32_t Bu::__calcHashCode<Bu::FString>( const Bu::FString &k )
{
	return __calcHashCode( k.c_str() );
}

template<> bool Bu::__cmpHashKeys<Bu::FString>(
		const Bu::FString &a, const Bu::FString &b )
{
	return a == b;
}