summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/big_union.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-01-05 16:44:59 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-01-05 16:44:59 +0100
commit283fb56eae1580dd83d1a6d67f3caf0dfb8f4ad4 (patch)
tree8e050a0b741746453d6c60125e65cc50926a3755 /TAO/tests/Param_Test/big_union.cpp
parent09579a9740d859943864bba5633485ed160f8b9c (diff)
downloadATCD-283fb56eae1580dd83d1a6d67f3caf0dfb8f4ad4.tar.gz
Fixed code due to removal of the non const Any extraction
* TAO/docs/tutorials/Quoter/Event_Service/Stock_Consumer.cpp: * TAO/examples/Kokyu_dsrt_schedulers/FP_Scheduler.cpp: * TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduler.cpp: * TAO/examples/Kokyu_dsrt_schedulers/MUF_Scheduler.cpp: * TAO/interop-tests/AnyTypeCode/tao/Demo_i.cpp: * TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp: * TAO/orbsvcs/orbsvcs/PortableGroup/PG_Default_Property_Validator.cpp: * TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirer.cpp: * TAO/orbsvcs/orbsvcs/Security/SL3_PolicyFactory.cpp: * TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.cpp: * TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp: * TAO/orbsvcs/tests/InterfaceRepo/IDL3_Test/idl3_client.cpp: * TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/Admin_Client.cpp: * TAO/orbsvcs/tests/Trading/TT_Info.cpp: * TAO/performance-tests/Anyop/anyop.cpp: * TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Client.cpp: * TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_i.cpp: * TAO/tests/Any/Recursive/client.cpp: * TAO/tests/Bug_2678_Regression/client.cpp: * TAO/tests/Bug_2678_Regression/server.cpp: * TAO/tests/Bug_2804_Regression/client.cpp: * TAO/tests/Bug_2844_Regression/client.cpp: * TAO/tests/Bug_2918_Regression/client.cpp: * TAO/tests/Bug_3506_Regression/server.cpp: * TAO/tests/Bug_3552_Regression/check.cpp: * TAO/tests/Bug_3919_Regression/client.cpp: * TAO/tests/Codec/client.cpp: * TAO/tests/DynAny_Test/test_dynany.cpp: * TAO/tests/DynAny_Test/test_dynsequence.cpp: * TAO/tests/DynAny_Test/test_dynstruct.cpp: * TAO/tests/Param_Test/any.cpp: * TAO/tests/Param_Test/anyop.cpp: * TAO/tests/Param_Test/bd_array_seq.cpp: * TAO/tests/Param_Test/bd_short_seq.cpp: * TAO/tests/Param_Test/bd_struct_seq.cpp: * TAO/tests/Param_Test/big_union.cpp: * TAO/tests/Param_Test/complex_any.cpp: * TAO/tests/Param_Test/except.cpp: * TAO/tests/Param_Test/fixed_struct.cpp: * TAO/tests/Param_Test/nested_struct.cpp: * TAO/tests/Param_Test/objref_struct.cpp: * TAO/tests/Param_Test/recursive_struct.cpp: * TAO/tests/Param_Test/recursive_union.cpp: * TAO/tests/Param_Test/small_union.cpp: * TAO/tests/Param_Test/ub_any_seq.cpp: * TAO/tests/Param_Test/ub_array_seq.cpp: * TAO/tests/Param_Test/ub_long_seq.cpp: * TAO/tests/Param_Test/ub_objref_seq.cpp: * TAO/tests/Param_Test/ub_short_seq.cpp: * TAO/tests/Param_Test/ub_str_seq.cpp: * TAO/tests/Param_Test/ub_struct_seq.cpp: * TAO/tests/Param_Test/ub_wstr_seq.cpp: * TAO/tests/Param_Test/var_struct.cpp: * TAO/tests/Portable_Interceptors/Benchmark/client_interceptors.cpp: * TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp: * TAO/tests/Portable_Interceptors/Dynamic/client_interceptor.cpp:
Diffstat (limited to 'TAO/tests/Param_Test/big_union.cpp')
-rw-r--r--TAO/tests/Param_Test/big_union.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tests/Param_Test/big_union.cpp b/TAO/tests/Param_Test/big_union.cpp
index 781083ff5d7..f03f3c91d50 100644
--- a/TAO/tests/Param_Test/big_union.cpp
+++ b/TAO/tests/Param_Test/big_union.cpp
@@ -47,7 +47,7 @@ Test_Big_Union::dii_req_invoke (CORBA::Request *req)
req->invoke ();
- Param_Test::Big_Union *tmp;
+ const Param_Test::Big_Union *tmp = 0;
req->return_value () >>= tmp;
this->ret_ = new Param_Test::Big_Union (*tmp);