Skip to content

Commit

Permalink
Fix code alignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr-Konovalov committed Apr 10, 2024
1 parent 5c3f05c commit 5de65c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/pstl_offload/internal/usm_memory_replacement.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ __internal_aligned_alloc(std::size_t __size, std::size_t __alignment)

if (__device != nullptr)
{
__res = __allocate_shared_for_device(__device, __size,
(__not_use_explicit_alignment == __alignment) ? alignof(std::max_align_t) : __alignment);
__res = __allocate_shared_for_device(
__device, __size, (__not_use_explicit_alignment == __alignment) ? alignof(std::max_align_t) : __alignment);
}
else
{
Expand Down

0 comments on commit 5de65c9

Please sign in to comment.