diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-11-08 04:41:11 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-11-08 04:41:11 +0000 |
commit | 06ce51582a8b5b0a099b5f8b13d6b4d359ee570d (patch) | |
tree | 7d7cfd107be4134a54693374a4ac78a3abb7f05f /ace/Local_Name_Space.cpp | |
parent | c87946b8a1454a7a574818e23fd5acfc3bb04975 (diff) | |
download | ATCD-06ce51582a8b5b0a099b5f8b13d6b4d359ee570d.tar.gz |
.
Diffstat (limited to 'ace/Local_Name_Space.cpp')
-rw-r--r-- | ace/Local_Name_Space.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Local_Name_Space.cpp b/ace/Local_Name_Space.cpp index 718a26ba31c..cb153b17c66 100644 --- a/ace/Local_Name_Space.cpp +++ b/ace/Local_Name_Space.cpp @@ -20,7 +20,8 @@ ACE_NS_String::fast_rep (void) const ACE_NS_String::operator ACE_WString () const { ACE_TRACE ("ACE_NS_String::operator ACE_WString"); - return ACE_WString (this->rep_, (this->len_ / sizeof (ACE_USHORT16)) - 1); + return ACE_WString (this->rep_, + (this->len_ / sizeof (ACE_USHORT16)) - 1); } size_t @@ -34,7 +35,8 @@ char * ACE_NS_String::char_rep (void) const { ACE_TRACE ("ACE_NS_String::char_rep"); - ACE_WString w_string (this->rep_, (this->len_ / sizeof (ACE_USHORT16)) - 1); + ACE_WString w_string (this->rep_, + (this->len_ / sizeof (ACE_USHORT16)) - 1); return w_string.char_rep (); } |