From b11dd5a3d674969983965758adbb7148c57c6a56 Mon Sep 17 00:00:00 2001 From: parsons Date: Mon, 21 Jun 2010 15:21:32 +0000 Subject: ChangeLogTag: Mon Jun 21 15:20:26 UTC 2010 Jeff Parsons --- TAO/tao/Vector_CDR_T.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'TAO/tao/Vector_CDR_T.h') diff --git a/TAO/tao/Vector_CDR_T.h b/TAO/tao/Vector_CDR_T.h index 3a3b84adcd9..12db4daa1d3 100644 --- a/TAO/tao/Vector_CDR_T.h +++ b/TAO/tao/Vector_CDR_T.h @@ -91,7 +91,8 @@ namespace TAO return false; } - for (std::vector::const_iterator i = source.begin (); + for (std::vector::const_iterator i = + source.begin (); i != source.end (); ++i) { @@ -146,9 +147,9 @@ namespace TAO TAO_OutputCDR &strm, const std::vector &source) { - typedef TAO_FixedArray_Var_T var_type; + typedef TAO_FixedArray_Var_T var_type; ::CORBA::ULong const length = source.size (); if (! (strm << length)) @@ -156,7 +157,8 @@ namespace TAO return false; } - for (std::vector i = source.begin (); + for (std::vector i = + source.begin (); i != source.end (); ++i) { @@ -192,7 +194,7 @@ namespace TAO return false; } - std::vector tmp_vec; + std::vector tmp_vec; tmp_vec.reserve (new_length); for ( ::CORBA::ULong i = 0; i < new_length; ++i) -- cgit v1.2.1