summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
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;