[*] fix
This commit is contained in:
parent
b47cf9f181
commit
76b5466e87
@ -152,19 +152,13 @@ namespace Aurora::Memory
|
||||
template <class U, class... Args >
|
||||
void construct(U *p, Args&&... args)
|
||||
{
|
||||
if constexpr (AuIsClass_v<U>)
|
||||
{
|
||||
new ((void *)p) U(AuForward<Args &&>(args)...);
|
||||
}
|
||||
new ((void *)p) U(AuForward<Args>(args)...);
|
||||
}
|
||||
|
||||
template <class U, class... Args >
|
||||
void construct_at(U *p, Args&&... args)
|
||||
{
|
||||
if constexpr (AuIsClass_v<U>)
|
||||
{
|
||||
new ((void *)p) U(AuForward<Args &&>(args)...);
|
||||
}
|
||||
new ((void *)p) U(AuForward<Args>(args)...);
|
||||
}
|
||||
|
||||
void deallocate(const T *pType,
|
||||
@ -199,9 +193,6 @@ namespace Aurora::Memory
|
||||
U *new_object(CtorArgs&&... args)
|
||||
{
|
||||
U *p = this->allocate_object<U>();
|
||||
if constexpr (AuIsClass_v<U> &&
|
||||
!AuIsTriviallyConstructible_v<U, CtorArgs>)
|
||||
{
|
||||
try
|
||||
{
|
||||
this->construct(p, AuForward<CtorArgs>(args)...);
|
||||
@ -211,7 +202,6 @@ namespace Aurora::Memory
|
||||
this->deallocate_object(p);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user