summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ace/Null_Condition.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 58814d35d9f..cb36f4bfa2d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Aug 6 14:13:25 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * ace/Null_Condition.h (vait):
+ Removed unused variable in method declaration to quash a warning.
+
Wed Aug 6 03:29:03 UTC 2003 Don Hinton <dhinton@dresystems.com>
Additional includes required by recent subsetting.
diff --git a/ace/Null_Condition.h b/ace/Null_Condition.h
index 7f098f5b8ef..a65a400b0fc 100644
--- a/ace/Null_Condition.h
+++ b/ace/Null_Condition.h
@@ -51,7 +51,7 @@ public:
int wait (const ACE_Time_Value * = 0) {errno = ETIME; return -1;}
/// Returns -1 with <errno> == <ETIME>.
- int wait (ACE_Null_Mutex &m,
+ int wait (ACE_Null_Mutex &,
const ACE_Time_Value * = 0) {errno = ETIME; return -1;}
/// Returns 0.