summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-06-13 01:30:23 +0000
committerSteve Huston <shuston@riverace.com>2002-06-13 01:30:23 +0000
commita0879dfb80fc2fe7f957a8f80e97b66c60b2c0d8 (patch)
tree1da2b15d922cae495e420af54cd8c99ad265c7a5
parent376de6fb8cc3ee705b307ff01f99c93010b940b0 (diff)
downloadATCD-a0879dfb80fc2fe7f957a8f80e97b66c60b2c0d8.tar.gz
ChangeLogTag:Wed Jun 12 21:28:29 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--tests/Framework_Component_DLL.cpp2
4 files changed, 16 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ed90d1c7287..4d8ceb7e93c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jun 12 21:28:29 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/Framework_Component_DLL.cpp (Server_T): Add template
+ parameter name to class template arg to get aC++ to eat it.
+
Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
* include/makeinclude/rules.lib.GNU:
@@ -65,7 +70,6 @@ Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
Changed SOFLAGS = to SOFLAGS += to avoid dealing with order of
includes of various Makefile rules.
-
Wed Jun 12 11:25:22 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* tests/Config_Test.cpp (test): Removed what appeared to be
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index ed90d1c7287..4d8ceb7e93c 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Wed Jun 12 21:28:29 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/Framework_Component_DLL.cpp (Server_T): Add template
+ parameter name to class template arg to get aC++ to eat it.
+
Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
* include/makeinclude/rules.lib.GNU:
@@ -65,7 +70,6 @@ Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
Changed SOFLAGS = to SOFLAGS += to avoid dealing with order of
includes of various Makefile rules.
-
Wed Jun 12 11:25:22 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* tests/Config_Test.cpp (test): Removed what appeared to be
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index ed90d1c7287..4d8ceb7e93c 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Wed Jun 12 21:28:29 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/Framework_Component_DLL.cpp (Server_T): Add template
+ parameter name to class template arg to get aC++ to eat it.
+
Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
* include/makeinclude/rules.lib.GNU:
@@ -65,7 +70,6 @@ Wed Jun 12 18:29:11 2002 Krishnakumar B <kitty@cs.wustl.edu>
Changed SOFLAGS = to SOFLAGS += to avoid dealing with order of
includes of various Makefile rules.
-
Wed Jun 12 11:25:22 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* tests/Config_Test.cpp (test): Removed what appeared to be
diff --git a/tests/Framework_Component_DLL.cpp b/tests/Framework_Component_DLL.cpp
index c658c02b9e8..a0369198096 100644
--- a/tests/Framework_Component_DLL.cpp
+++ b/tests/Framework_Component_DLL.cpp
@@ -31,7 +31,7 @@ Simple_Service::name (void)
/// This is just a simple server that can be loaded via the ACE
/// Service Configuration framework and uses the singleton that
/// also lives in this library.
-template <int>
+template <int which>
class Server_T : public ACE_Service_Object
{
public: