We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff95378 commit f05f144Copy full SHA for f05f144
libcxx/include/__utility/small_buffer.h
@@ -71,7 +71,7 @@ class __small_buffer {
71
std::construct_at(reinterpret_cast<byte**>(__buffer_), __allocation);
72
return std::launder(reinterpret_cast<_Stored*>(__allocation));
73
# else
74
- return static_cast<_Stored*>(std::__libcpp_allocate(_BufferSize* sizeof(byte), _LIBCPP_ALIGNOF(byte)));
+ return static_cast<_Stored*>(std::__libcpp_allocate(_BufferSize * sizeof(byte), _LIBCPP_ALIGNOF(byte)));
75
# endif // _LIBCPP_HAS_LIBRARY_ALIGNED_ALLOCATION
76
}
77
0 commit comments