Skip to content

Commit 9bd356a

Browse files
committed
Layout changes
* TAO/tao/Array_VarOut_T.cpp: * TAO/tao/Array_VarOut_T.inl:
1 parent 1e40273 commit 9bd356a

2 files changed

Lines changed: 7 additions & 14 deletions

File tree

TAO/tao/Array_VarOut_T.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ TAO_FixedArray_Var_T<T,T_slice,TAG>::operator= (T_slice * p)
2828
template<typename T, typename T_slice, typename TAG>
2929
TAO_FixedArray_Var_T<T,T_slice,TAG> &
3030
TAO_FixedArray_Var_T<T,T_slice,TAG>::operator= (
31-
const TAO_FixedArray_Var_T<T,T_slice,TAG> & p
32-
)
31+
const TAO_FixedArray_Var_T<T,T_slice,TAG> & p)
3332
{
3433
if (this != &p)
3534
{
@@ -62,8 +61,7 @@ TAO_VarArray_Var_T<T,T_slice,TAG>::operator= (T_slice * p)
6261
template<typename T, typename T_slice, typename TAG>
6362
TAO_VarArray_Var_T<T,T_slice,TAG> &
6463
TAO_VarArray_Var_T<T,T_slice,TAG>::operator= (
65-
const TAO_VarArray_Var_T<T,T_slice,TAG> & p
66-
)
64+
const TAO_VarArray_Var_T<T,T_slice,TAG> & p)
6765
{
6866
if (this != &p)
6967
{
@@ -81,8 +79,7 @@ TAO_VarArray_Var_T<T,T_slice,TAG>::operator= (
8179
template<typename T, typename T_slice, typename TAG>
8280
void
8381
TAO_Array_Forany_T<T,T_slice,TAG>::_tao_any_destructor (
84-
void * _tao_void_pointer
85-
)
82+
void * _tao_void_pointer)
8683
{
8784
T_slice * tmp = static_cast<T_slice *> (_tao_void_pointer);
8885
TAO::Array_Traits<FORANY>::free (tmp);

TAO/tao/Array_VarOut_T.inl

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,15 @@ TAO_Array_Out_T<T,T_var,T_slice,TAG>::TAO_Array_Out_T (T_var & p)
189189
template<typename T, typename T_var, typename T_slice, typename TAG>
190190
ACE_INLINE
191191
TAO_Array_Out_T<T,T_var,T_slice,TAG>::TAO_Array_Out_T (
192-
const TAO_Array_Out_T<T,T_var,T_slice,TAG> & p
193-
)
192+
const TAO_Array_Out_T<T,T_var,T_slice,TAG> & p)
194193
: ptr_ (const_cast<THIS_OUT_TYPE &> (p).ptr_)
195194
{}
196195

197196
template<typename T, typename T_var, typename T_slice, typename TAG>
198197
ACE_INLINE
199198
TAO_Array_Out_T<T,T_var,T_slice,TAG> &
200199
TAO_Array_Out_T<T,T_var,T_slice,TAG>::operator= (
201-
const TAO_Array_Out_T<T,T_var,T_slice,TAG> & p
202-
)
200+
const TAO_Array_Out_T<T,T_var,T_slice,TAG> & p)
203201
{
204202
this->ptr_ = const_cast<THIS_OUT_TYPE &> (p).ptr_;
205203
return *this;
@@ -250,17 +248,15 @@ template<typename T, typename T_slice, typename TAG>
250248
ACE_INLINE
251249
TAO_Array_Forany_T<T,T_slice,TAG>::TAO_Array_Forany_T (
252250
T_slice * p,
253-
CORBA::Boolean nocopy
254-
)
251+
CORBA::Boolean nocopy)
255252
: ptr_ (p),
256253
nocopy_ (nocopy)
257254
{}
258255

259256
template<typename T, typename T_slice, typename TAG>
260257
ACE_INLINE
261258
TAO_Array_Forany_T<T,T_slice,TAG>::TAO_Array_Forany_T (
262-
const TAO_Array_Forany_T<T,T_slice,TAG> & p
263-
)
259+
const TAO_Array_Forany_T<T,T_slice,TAG> & p)
264260
: ptr_ (p.ptr_),
265261
nocopy_ (p.nocopy_)
266262
{

0 commit comments

Comments
 (0)