summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorcleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-02-26 14:53:49 +0000
committercleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-02-26 14:53:49 +0000
commit04eac7d5cbf5cf3ebd9f25527492ae5941cea2f3 (patch)
tree18769b78ddc569083e91267b66ee7c9f7149e415 /ACE
parent9fb96a11ce32aabb8f03b24a2c08904b84839152 (diff)
downloadATCD-04eac7d5cbf5cf3ebd9f25527492ae5941cea2f3.tar.gz
Fixed unused arg warning.
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/tests/Timer_Queue_Test.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 0ce2bae5795..053abce8da6 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 26 14:48:01 UTC 2010 Chris Cleeland <cleeland@ociweb.com>
+
+ * tests/Timer_Queue_Test.cpp (handle_timeout): Fix unused argument
+ warning.
+
Fri Feb 26 14:45:30 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/OS_NS_sys_time.inl (ACE_OS::gettimeofday): Added in support
diff --git a/ACE/tests/Timer_Queue_Test.cpp b/ACE/tests/Timer_Queue_Test.cpp
index 0ea1eb23fa4..b7d86518f33 100644
--- a/ACE/tests/Timer_Queue_Test.cpp
+++ b/ACE/tests/Timer_Queue_Test.cpp
@@ -92,7 +92,7 @@ struct Interval_Handler : public ACE_Event_Handler
{
Interval_Handler (void) : trip_count_ (0) { }
- virtual int handle_timeout (const ACE_Time_Value & , const void *arg)
+ virtual int handle_timeout (const ACE_Time_Value & , const void *)
{
++trip_count_;
return 0;