From 03f39c8be08d632d1f982f5ba5f2e95256be1122 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Aug 2018 16:47:38 +0200 Subject: Use consistent naming scheme --- chilbert/SetBits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chilbert/SetBits.hpp') diff --git a/chilbert/SetBits.hpp b/chilbert/SetBits.hpp index 0adbbf8..cc5d602 100644 --- a/chilbert/SetBits.hpp +++ b/chilbert/SetBits.hpp @@ -32,10 +32,10 @@ namespace chilbert { */ template inline void -setBits(H& h, const size_t n, const size_t i, const I& w) +set_bits(H& h, const size_t n, const size_t i, const I& w) { for (size_t j = 0; j < n; j++) { - setBit(h, i + j, testBit(w, j)); + set_bit(h, i + j, test_bit(w, j)); } } -- cgit v1.2.1