summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-06 14:13:21 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-06 14:13:21 +0000
commite370f7328572df73437dd1980b7ed537e1946c9b (patch)
tree6471c02f62d7d8041e4a6c6b077b8e8f34e8b939
parentdfad82bd6a1f97db79e0c6e658da5ffe1f49d05b (diff)
downloadATCD-e370f7328572df73437dd1980b7ed537e1946c9b.tar.gz
ChangeLogTag:Wed Aug 6 14:13:25 UTC 2003 Don Hinton <dhinton@dresystems.com>
-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.