diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-13 02:55:37 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-13 02:55:37 +0000 |
commit | cd3962290ff3c24020e0c461bc666ce39d20af74 (patch) | |
tree | a2154df2feb003ccd45f6fec9293f354c7c8badb /tests/Hash_Map_Manager_Test.cpp | |
parent | 6228bc879e0540e10d5d71d8aeecc7fe34ed9332 (diff) | |
download | ATCD-cd3962290ff3c24020e0c461bc666ce39d20af74.tar.gz |
*** empty log message ***
Diffstat (limited to 'tests/Hash_Map_Manager_Test.cpp')
-rw-r--r-- | tests/Hash_Map_Manager_Test.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/Hash_Map_Manager_Test.cpp b/tests/Hash_Map_Manager_Test.cpp index 351b8a85ba5..d08062b586e 100644 --- a/tests/Hash_Map_Manager_Test.cpp +++ b/tests/Hash_Map_Manager_Test.cpp @@ -24,9 +24,9 @@ #if defined (ACE_HAS_TEMPLATE_SPECIALIZATION) -ACE_Hash_Map_Entry<char * , char *>:: -ACE_Hash_Map_Entry (char * const &ext_id, char * const &int_id, - ACE_Hash_Map_Entry<char *, char *> *ptr) +ACE_Hash_Map_Entry<char * , char *>::ACE_Hash_Map_Entry (char * const &ext_id, + char * const &int_id, + ACE_Hash_Map_Entry<char *, char *> *ptr) : ext_id_ (ext_id), int_id_ (ACE_OS::strdup (int_id)), next_ (ptr) @@ -43,22 +43,20 @@ ACE_Hash_Map_Entry<char *, char *>::~ACE_Hash_Map_Entry (void) // char*, which doesn't have a hash() method defined on it. long unsigned int -ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex>:: -hash (char * const & ext_id) +ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex>::hash (char * const & ext_id) { return ACE::hash_pjw (ext_id); } int -ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex>:: -equal (char * const & id1, char * const & id2) +ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex>::equal (char * const & id1, + char * const & id2) { return (ACE_OS::strcmp (id1, id2) == 0); } #endif /* ACE_HAS_TEMPLATE_SPECIALIZATION */ - // If code below breaks, it's probably because template specialization // is not supported. |