diff options
Diffstat (limited to 'src/old/fstring.cpp')
-rw-r--r-- | src/old/fstring.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/old/fstring.cpp b/src/old/fstring.cpp new file mode 100644 index 0000000..82d024d --- /dev/null +++ b/src/old/fstring.cpp | |||
@@ -0,0 +1,13 @@ | |||
1 | #include "fstring.h" | ||
2 | #include "hash.h" | ||
3 | |||
4 | template<> uint32_t __calcHashCode<FString>( const FString &k ) | ||
5 | { | ||
6 | return __calcHashCode( k.c_str() ); | ||
7 | } | ||
8 | |||
9 | template<> bool __cmpHashKeys<FString>( const FString &a, const FString &b ) | ||
10 | { | ||
11 | return a == b; | ||
12 | } | ||
13 | |||