diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-01 00:45:21 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-01 00:45:21 +0000 |
commit | 684444f5d656207f41938fa445ee54329b69bd30 (patch) | |
tree | 36cd49dceb0fe8fa0249fde916154be0769c74cc /tests | |
parent | 5f029943a134622d5f494be33dd2c9159015040e (diff) | |
download | ATCD-684444f5d656207f41938fa445ee54329b69bd30.tar.gz |
Wed Jan 31 18:43:26 2001 Krishnakumar B <kitty@cs.wustl.edu>
* tests/Message_Queue_Test_Ex.cpp (single_thread_performance_test):
Removed the warning about queue_type using ACE_UNUSED_ARG.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Message_Queue_Test_Ex.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Message_Queue_Test_Ex.cpp b/tests/Message_Queue_Test_Ex.cpp index fad97119da7..f8bb40aec58 100644 --- a/tests/Message_Queue_Test_Ex.cpp +++ b/tests/Message_Queue_Test_Ex.cpp @@ -10,7 +10,7 @@ // // = DESCRIPTION // This is: -// 1) a simple test of the ACE_Message_Queue_Ex that +// 1) a simple test of the ACE_Message_Queue_Ex that // executes a performance measurement test for both single-threaded // (null synch) and thread-safe ACE_Message_Queue_Exs. // @@ -72,6 +72,7 @@ struct Queue_Wrapper static int single_thread_performance_test (int queue_type = 0) { + ACE_UNUSED_ARG (queue_type); const char test_message[] = "ACE_Message_Queue_Ex Test Message"; const ACE_TCHAR *message = |