diff --git a/include/pstl_offload/internal/usm_memory_replacement.h b/include/pstl_offload/internal/usm_memory_replacement.h index 58132126676..c9effdd3571 100644 --- a/include/pstl_offload/internal/usm_memory_replacement.h +++ b/include/pstl_offload/internal/usm_memory_replacement.h @@ -146,7 +146,7 @@ __internal_aligned_alloc(std::size_t __size, std::size_t __alignment) #else // can always use aligned allocation, not interop issue with free() __res = __original_aligned_alloc(__size, __not_use_explicit_alignment == __alignment ? alignof(std::max_align_t) - : __alignment ); + : __alignment); #endif }