mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-02 18:43:48 +00:00
chore(Deps/Acelite): Update to 6.5.10 (#3450)
This commit is contained in:
8
deps/acelite/ace/Name_Space.cpp
vendored
8
deps/acelite/ace/Name_Space.cpp
vendored
@@ -19,7 +19,11 @@ ACE_Name_Binding::ACE_Name_Binding (void)
|
||||
ACE_Name_Binding::~ACE_Name_Binding (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Name_Binding::~ACE_Name_Binding");
|
||||
#if defined (ACE_HAS_ALLOC_HOOKS)
|
||||
ACE_Allocator::instance()->free ((void *) this->type_);
|
||||
#else
|
||||
ACE_OS::free ((void *) this->type_);
|
||||
#endif /* ACE_HAS_ALLOC_HOOKS */
|
||||
}
|
||||
|
||||
ACE_Name_Binding::ACE_Name_Binding (const ACE_NS_WString &name,
|
||||
@@ -47,7 +51,11 @@ ACE_Name_Binding::operator = (const ACE_Name_Binding &s)
|
||||
|
||||
if (this != &s)
|
||||
{
|
||||
#if defined (ACE_HAS_ALLOC_HOOKS)
|
||||
ACE_Allocator::instance()->free ((void *) this->type_);
|
||||
#else
|
||||
ACE_OS::free ((void *) this->type_);
|
||||
#endif /* ACE_HAS_ALLOC_HOOKS */
|
||||
this->name_ = s.name_;
|
||||
this->value_ = s.value_;
|
||||
this->type_ = ACE_OS::strdup (s.type_);
|
||||
|
||||
Reference in New Issue
Block a user