summaryrefslogtreecommitdiff
path: root/ACE/ace/Functor.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
commit99c513d228740018c656ade1c93302cc04351911 (patch)
tree6f1c230b12220ce80f60aae4ccd0783675777b18 /ACE/ace/Functor.inl
parent741ba3b3813e9f0efc150d8a730237fd0991516b (diff)
downloadATCD-99c513d228740018c656ade1c93302cc04351911.tar.gz
Tue Sep 28 11:34:05 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Asynch_Connector.cpp: * ace/Barrier.h: * ace/Barrier.cpp: * ace/Condition_Thread_Mutex.h: * ace/Condition_Thread_Mutex.inl: * ace/Containers_T.cpp: * ace/Functor.h: * ace/Functor.inl: * ace/IO_Cntl_Msg.cpp: * ace/Intrusive_List.cpp: * ace/Local_Tokens.inl: * ace/MEM_IO.cpp: * ace/MEM_Stream.h: * ace/MEM_Stream.inl: * ace/Malloc_T.inl: * ace/OS_NS_Thread.inl: * ace/OS_NS_string.inl: * ace/Object_Manager_Base.cpp: * ace/POSIX_Proactor.cpp: * ace/Ping_Socket.cpp: * ace/Signal.inl: * ace/Throughput_Stats.h: * ace/Throughput_Stats.cpp: * ace/Time_Value.cpp: * ace/Timer_Hash_T.cpp: * ace/Timer_Heap_T.cpp: * ace/Vector_T.h: * ace/Vector_T.cpp: * ace/config-linux-common.h: Removed code that was ifdefed out for years now
Diffstat (limited to 'ACE/ace/Functor.inl')
-rw-r--r--ACE/ace/Functor.inl36
1 files changed, 0 insertions, 36 deletions
diff --git a/ACE/ace/Functor.inl b/ACE/ace/Functor.inl
index 65da8feec6d..86d0f8f45a6 100644
--- a/ACE/ace/Functor.inl
+++ b/ACE/ace/Functor.inl
@@ -71,42 +71,6 @@ ACE_Hash<unsigned char>::operator () (unsigned char t) const
return t;
}
-#if 0
-ACE_INLINE unsigned long
-ACE_Hash<ACE_INT16>::operator () (ACE_INT16 t) const
-{
- return t;
-}
-
-ACE_INLINE unsigned long
-ACE_Hash<ACE_UINT16>::operator () (ACE_UINT16 t) const
-{
- return t;
-}
-
-ACE_INLINE unsigned long
-ACE_Hash<ACE_INT32>::operator () (ACE_INT32 t) const
-{
- return static_cast<unsigned long> (t);
-}
-
-ACE_INLINE unsigned long
-ACE_Hash<ACE_UINT32>::operator () (ACE_UINT32 t) const
-{
- return t;
-}
-
-ACE_INLINE unsigned long
-ACE_Hash<ACE_UINT64>::operator () (ACE_UINT64 t) const
-{
-#if (ACE_SIZEOF_LONG == 4)
- return ACE_U64_TO_U32 (t);
-#else
- return static_cast<unsigned long> (t);
-#endif /* ACE_SIZEOF_LONG */
-}
-#endif
-
ACE_INLINE unsigned long
ACE_Hash<short>::operator () (short t) const
{