summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog-99c7
-rw-r--r--TAO/examples/Simple/bank/server.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 7eea559e340..a1f04a17de3 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,10 @@
+Wed Jul 28 22:09:18 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * examples/Simple/bank/server.cpp: Fixed a typo where
+ #pragma instantiate Server<Account_Manager_i> should be #pragma
+ instantiate Server<AccountManager_i>. Thanks to Bill Tovrea
+ <gwtovrea@west.raytheon.com> for reporting this.
+
Wed Jul 28 21:10:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* examples/Simulator/DOVEBrowser/NS_Resolve.java: fixed name
diff --git a/TAO/examples/Simple/bank/server.cpp b/TAO/examples/Simple/bank/server.cpp
index cc7cca34f15..3918c242fb7 100644
--- a/TAO/examples/Simple/bank/server.cpp
+++ b/TAO/examples/Simple/bank/server.cpp
@@ -44,6 +44,6 @@ main (int argc, char *argv[])
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class Server<AccountManager_i>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate Server<Account_Manager_i>
+#pragma instantiate Server<AccountManager_i>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */