Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_2595_Regression / Hello.cpp
bloba3c0d15f54d1738b5addedcdd768f70865ad4a45
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 Hello::op (
10 ::Test::Fls_out fstruct,
11 ::Test::Vls_out vstruct
14 Test::Fls a = {5, 1.0};
15 fstruct = a;
16 vstruct = new Test::Vls;
19 void
20 Hello::shutdown ()
22 this->orb_->shutdown (false);