summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2004-12-02 16:09:08 +0000
committerSteve Huston <shuston@riverace.com>2004-12-02 16:09:08 +0000
commit2427c94593fa3f66cb5754cea934303f85ed6bc4 (patch)
tree490580c5e41255edf9bca8e1a7552dad1cb8ffc4
parentae13c3b6d0587754908702b8aec6380c94fb2d46 (diff)
downloadATCD-2427c94593fa3f66cb5754cea934303f85ed6bc4.tar.gz
ChangeLogTag:Thu Dec 2 11:08:29 2004 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog4
-rw-r--r--examples/APG/Threads/Guards.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 099da85d5cb..184ef3f9e2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 2 11:08:29 2004 Steve Huston <shuston@riverace.com>
+
+ * examples/APG/Threads/Guards.cpp: Fixed "unused parameter" warning.
+
Thu Dec 2 15:06:12 UTC 2004 Martin Corino <mcorino@remedy.nl>
* ace/Timeprobe_T.cpp:
diff --git a/examples/APG/Threads/Guards.cpp b/examples/APG/Threads/Guards.cpp
index c3fa677ddd2..ef2baaaed42 100644
--- a/examples/APG/Threads/Guards.cpp
+++ b/examples/APG/Threads/Guards.cpp
@@ -62,7 +62,7 @@ HA_Device_Repository::update_device (int device_id)
// Listing 3 code/ch12
int
-HA_Device_Repository::update_device (int device_id)
+HA_Device_Repository::update_device (int /* device_id */)
{
ACE_GUARD_RETURN (ACE_Thread_Mutex, mon, mutex_, -1);