summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-30 02:13:12 +0000
committerjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-30 02:13:12 +0000
commit78799735baea534a12ee2cda2828d61afdfde23f (patch)
tree336773091a1ebe153032afc44f3211cd5ea904b9
parent8d1c6b6fbb9a10ff7463681bcd175c81e801d71b (diff)
downloadATCD-78799735baea534a12ee2cda2828d61afdfde23f.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b6
-rw-r--r--docs/tutorials/016/Condition_i.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index afbaf6796ad..79504b14ddc 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,9 @@
+Thu Oct 29 21:13:41 1998 James CE Johnson <jcej@chiroptera.tragus.org>
+
+ * docs/tutorials/016/Condition_i.cpp:
+ Fixed messed-up the signature on
+ Condition::operator Condition::value_t(void)
+
Thu Oct 29 18:51:19 1998 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp: Added "|| defined (_AIX)" to decision to do
diff --git a/docs/tutorials/016/Condition_i.cpp b/docs/tutorials/016/Condition_i.cpp
index 82830bd7374..d7facf62c80 100644
--- a/docs/tutorials/016/Condition_i.cpp
+++ b/docs/tutorials/016/Condition_i.cpp
@@ -25,7 +25,7 @@ Condition::~Condition(void)
to clients of the class. It also allows us to use a private method
for getting a reference to the value when we need to modify it.
*/
-Condition::operator value_t (void)
+Condition::operator Condition::value_t (void)
{
// Place a guard around the variable so that it won't change as
// we're copying it back to the client.