aboutsummaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/hash.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/hash.h b/src/hash.h
index cd21a29..fa82cc3 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -534,6 +534,12 @@ template<> bool __cmpHashKeys<const int>( const int a, const int b );
534template<> uint32_t __calcHashCode<int>( int k ); 534template<> uint32_t __calcHashCode<int>( int k );
535template<> bool __cmpHashKeys<int>( int a, int b ); 535template<> bool __cmpHashKeys<int>( int a, int b );
536 536
537template<> uint32_t __calcHashCode<const unsigned int>( const unsigned int k );
538template<> bool __cmpHashKeys<const unsigned int>( const unsigned int a, const unsigned int b );
539
540template<> uint32_t __calcHashCode<unsigned int>( unsigned int k );
541template<> bool __cmpHashKeys<unsigned int>( unsigned int a, unsigned int b );
542
537template<> uint32_t __calcHashCode<const char *>( const char *k ); 543template<> uint32_t __calcHashCode<const char *>( const char *k );
538template<> bool __cmpHashKeys<const char *>( const char *a, const char *b ); 544template<> bool __cmpHashKeys<const char *>( const char *a, const char *b );
539 545