summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLogs/ChangeLog-02a4
-rw-r--r--ChangeLogs/ChangeLog-03a4
-rw-r--r--ace/Pair_T.h8
-rw-r--r--ace/Pair_T.i2
5 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index f9534e10793..1ef82684ea4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Pair_T.h: Reformatted to conform to the ACE style.
+
Sat Jan 8 09:44:51 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* examples/Threads/thread_pool.cpp: Revised the example to
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index f9534e10793..1ef82684ea4 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Pair_T.h: Reformatted to conform to the ACE style.
+
Sat Jan 8 09:44:51 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* examples/Threads/thread_pool.cpp: Revised the example to
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index f9534e10793..1ef82684ea4 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,7 @@
+Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Pair_T.h: Reformatted to conform to the ACE style.
+
Sat Jan 8 09:44:51 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* examples/Threads/thread_pool.cpp: Revised the example to
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)