diff options
Diffstat (limited to 'chilbert/SetLocation.hpp')
-rw-r--r-- | chilbert/SetLocation.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chilbert/SetLocation.hpp b/chilbert/SetLocation.hpp index 47aa969..344c0f8 100644 --- a/chilbert/SetLocation.hpp +++ b/chilbert/SetLocation.hpp @@ -25,10 +25,10 @@ namespace chilbert { template <class P, class I> inline void -setLocation(P* const p, const size_t n, const size_t i, const I& l) +set_location(P* const p, const size_t n, const size_t i, const I& l) { for (size_t j = 0; j < n; j++) { - setBit(p[j], i, testBit(l, j)); + set_bit(p[j], i, test_bit(l, j)); } } |