diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
commit | f40cc79fed36173f3588f26d7bec8ee7705dc153 (patch) | |
tree | 61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Service_Object.cpp | |
parent | 2afe8d4640d7b30bfe959c16212ea87df8e6ec7c (diff) | |
download | ATCD-f40cc79fed36173f3588f26d7bec8ee7705dc153.tar.gz |
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Service_Object.cpp')
-rw-r--r-- | ace/Service_Object.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/ace/Service_Object.cpp b/ace/Service_Object.cpp index 1243ffc9481..e768ebee113 100644 --- a/ace/Service_Object.cpp +++ b/ace/Service_Object.cpp @@ -20,14 +20,11 @@ ACE_Service_Type::dump (void) const ACE_TRACE ("ACE_Service_Type::dump"); } -ACE_Service_Type::ACE_Service_Type (const ASYS_TCHAR *n, +ACE_Service_Type::ACE_Service_Type (const ACE_TCHAR *n, ACE_Service_Type_Impl *t, const ACE_SHLIB_HANDLE h, int active) : name_ (0), -#if defined (ACE_HAS_MOSTLY_UNICODE_APIS) - chname_ (0), -#endif /* ACE_HAS_MOSTLY_UNICODE_APIS */ type_ (t), handle_ (h), active_ (active), @@ -46,11 +43,7 @@ ACE_Service_Type::~ACE_Service_Type (void) if (this->handle_ != 0) ACE_OS::dlclose ((ACE_SHLIB_HANDLE) this->handle_); - delete [] (ASYS_TCHAR *) this->name_; - -#if defined (ACE_HAS_MOSTLY_UNICODE_APIS) - delete [] (char *) this->chname_; -#endif /* ACE_HAS_MOSTLY_UNICODE_APIS */ + delete [] (ACE_TCHAR *) this->name_; } void |