summaryrefslogtreecommitdiff
path: root/ACE/tests/Timer_Queue_Test.cpp
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/tests/Timer_Queue_Test.cpp
parent9fb96a11ce32aabb8f03b24a2c08904b84839152 (diff)
downloadATCD-04eac7d5cbf5cf3ebd9f25527492ae5941cea2f3.tar.gz
Fixed unused arg warning.
Diffstat (limited to 'ACE/tests/Timer_Queue_Test.cpp')
-rw-r--r--ACE/tests/Timer_Queue_Test.cpp2
1 files changed, 1 insertions, 1 deletions
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;