summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-16 20:42:50 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-16 20:42:50 +0000
commitd9dfc7bc7132f4120ba97546f553575d4c10c751 (patch)
tree05a8d44a5306ebb47794bc97ab95afff1cc4f8d2
parent12c8ed54609c4799ba069798066556b2f319675f (diff)
downloadATCD-d9dfc7bc7132f4120ba97546f553575d4c10c751.tar.gz
reordered initializations in ctor to match declaration order
-rw-r--r--ace/Typed_SV_Message.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Typed_SV_Message.i b/ace/Typed_SV_Message.i
index 5717dcc2d50..4d74a14f5dd 100644
--- a/ace/Typed_SV_Message.i
+++ b/ace/Typed_SV_Message.i
@@ -19,8 +19,8 @@ ACE_Typed_SV_Message<T>::ACE_Typed_SV_Message (const T &d,
long t,
int l,
int m)
- : data_ (d),
- type_ (t)
+ : type_ (t),
+ data_ (d)
{
ACE_TRACE ("ACE_Typed_SV_Message<T>::ACE_Typed_SV_Message");
this->length (l);