From 9fde28df12c6f9d45e9fcb60d6a609e416a1371a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 7 Aug 2018 19:47:16 +0200 Subject: Clean up remaining code and format consistently with clang-format --- chilbert/GetBits.hpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'chilbert/GetBits.hpp') diff --git a/chilbert/GetBits.hpp b/chilbert/GetBits.hpp index 9a6d5ec..66f6f32 100644 --- a/chilbert/GetBits.hpp +++ b/chilbert/GetBits.hpp @@ -23,11 +23,16 @@ namespace chilbert { +/** Copy a range of bits from one field to the start of another. + * + * @param h Source bit field + * @param n Number of bits + * @param i Start bit index in source + * @param w Destination bit field + */ template -inline void getBits(const H& h, // bits to read - const int n, // number of bits - const int i, // bit index - I& w) // destination +inline void +getBits(const H& h, const int n, const int i, I& w) { for (int j = 0; j < n; j++) { setBit(w, j, testBit(h, i + j)); -- cgit v1.2.1