aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/GetLocation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chilbert/GetLocation.hpp')
-rw-r--r--chilbert/GetLocation.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/chilbert/GetLocation.hpp b/chilbert/GetLocation.hpp
index 816b7b7..3594c80 100644
--- a/chilbert/GetLocation.hpp
+++ b/chilbert/GetLocation.hpp
@@ -25,10 +25,10 @@ namespace chilbert {
template <class P, class I>
inline void
-getLocation(const P* const p, const size_t n, const size_t i, I& l)
+get_location(const P* const p, const size_t n, const size_t i, I& l)
{
for (size_t j = 0; j < n; ++j) {
- setBit(l, j, testBit(p[j], i));
+ set_bit(l, j, test_bit(p[j], i));
}
}