summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-24 06:42:39 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-24 06:42:39 +0000
commite1874ba015a668274b48e85364311ffc49920b3d (patch)
treec108f89095695e4f56439ea10c7a5f842174a037
parent62f310fadec27373c797c7475ff19204a5787833 (diff)
downloadATCD-e1874ba015a668274b48e85364311ffc49920b3d.tar.gz
Added ACE_UNUSED_ARG macro for <test_factory> to make KAI complier
happy.
-rw-r--r--TAO/tests/Smart_Proxies/client.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/tests/Smart_Proxies/client.cpp b/TAO/tests/Smart_Proxies/client.cpp
index 492eb1aa67f..ad165541fd6 100644
--- a/TAO/tests/Smart_Proxies/client.cpp
+++ b/TAO/tests/Smart_Proxies/client.cpp
@@ -80,7 +80,11 @@ main (int argc, char *argv[])
ACE_NEW_RETURN (test_factory,
Smart_Test_Factory,
-1);
-
+
+ // To make KAI Compiler happy as it considers <test_factory> to be
+ // an unused variable.
+ ACE_UNUSED_ARG (test_factory);
+
Test_var server =
Test::_narrow (object.in (),
ACE_TRY_ENV);