Skip to content

Commit 340ce2f

Browse files
committed
Typo
1 parent c388e0d commit 340ce2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/PODArray.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class PODArrayBase : private boost::noncopyable, private TAllocator /// empty
9393
/// Round padding up to an whole number of elements to simplify arithmetic.
9494
static constexpr size_t pad_right = integerRoundUp(pad_right_, ELEMENT_SIZE);
9595
/// pad_left is also rounded up to 16 bytes to maintain alignment of allocated memory.
96-
static constexpr size_t pad_left = integerRoundUp(pad_left, std::lcm(ELEMENT_SIZE, 16));
96+
static constexpr size_t pad_left = integerRoundUp(pad_left_, std::lcm(ELEMENT_SIZE, 16));
9797
/// Empty array will point to this static memory as padding and begin/end.
9898
static constexpr char * null = const_cast<char *>(empty_pod_array) + pad_left;
9999

0 commit comments

Comments
 (0)