Skip to content

Commit

Permalink
Merge branch 'main' into animation-system
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarrr committed Dec 15, 2024
2 parents 7aa3341 + be68787 commit 516b47e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ashura/std/lambda.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct Lambda<R(Args...), Alignment, Capacity>

if (dst_mem == nullptr) [[unlikely]]
{
src->~T();
obj::destruct(Span{src, 1});
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion ashura/std/super.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct Super

if (dst_mem == nullptr) [[unlikely]]
{
src->~T();
obj::destruct(Span{src, 1});
}
else
{
Expand Down

0 comments on commit 516b47e

Please sign in to comment.