Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/src/arrow/util/bit_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ struct CopyBitsParams {
///
/// Copy bits [start, end[ from src into the position [start, end[ in dst
/// and return the result (inputs are unmodified).
/// Setting ``kAllowFullCopy`` to false is an optimization when the caller can
/// Setting `kAllowFullCopy` to false is an optimization when the caller can
/// guarantee that the range of bits to copy does not cover the whole range.
template <typename Uint, bool kAllowFullCopy = true>
[[nodiscard]] constexpr Uint CopyBitsInInteger(const CopyBitsParams<Uint>& params) {
Expand Down
Loading