summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
Diffstat (limited to 'ace')
-rw-r--r--ace/Pair_T.h8
-rw-r--r--ace/Pair_T.i2
2 files changed, 1 insertions, 9 deletions
diff --git a/ace/Pair_T.h b/ace/Pair_T.h
index 8761dfdcb45..cb329cf391b 100644
--- a/ace/Pair_T.h
+++ b/ace/Pair_T.h
@@ -10,7 +10,7 @@
// Pair_T.h
//
// = AUTHOR
-// Irfan Pyarali
+// Irfan Pyarali <irfan@cs.wustl.edu>
//
// ============================================================================
@@ -23,8 +23,6 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-////////////////////////////////////////////////////////////////////////////////
-
template <class T1, class T2>
class ACE_Pair
{
@@ -61,8 +59,6 @@ protected:
T2 second_;
};
-////////////////////////////////////////////////////////////////////////////////
-
template <class T1, class T2>
class ACE_Reference_Pair
{
@@ -95,8 +91,6 @@ protected:
T2 &second_;
};
-////////////////////////////////////////////////////////////////////////////////
-
#if defined (__ACE_INLINE__)
#include "ace/Pair_T.i"
#endif /* __ACE_INLINE__ */
diff --git a/ace/Pair_T.i b/ace/Pair_T.i
index cea6356c3ac..0424ae07a4d 100644
--- a/ace/Pair_T.i
+++ b/ace/Pair_T.i
@@ -39,8 +39,6 @@ ACE_Pair<T1, T2>::second (const T2 &t2)
this->second_ = t2;
}
-////////////////////////////////////////////////////////////////////////////////
-
template <class T1, class T2> ACE_INLINE
ACE_Reference_Pair<T1, T2>::ACE_Reference_Pair (T1 &t1,
T2 &t2)