aboutsummaryrefslogtreecommitdiffstats
path: root/include/chilbert
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-02-10 19:39:50 -0500
committerDavid Robillard <d@drobilla.net>2025-02-10 19:48:25 -0500
commit6cf6acdd0ada4e85fc8ac8924ec3dc717a29d1b7 (patch)
tree7fa329dfc992b62733835d778c1c4462f2673d00 /include/chilbert
parentd466d59fab9086bafeb8c5d3208580a639b6bdbf (diff)
downloadchilbert-6cf6acdd0ada4e85fc8ac8924ec3dc717a29d1b7.tar.gz
chilbert-6cf6acdd0ada4e85fc8ac8924ec3dc717a29d1b7.tar.bz2
chilbert-6cf6acdd0ada4e85fc8ac8924ec3dc717a29d1b7.zip
Remove pointless const qualifier
Diffstat (limited to 'include/chilbert')
-rw-r--r--include/chilbert/detail/operations.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/chilbert/detail/operations.hpp b/include/chilbert/detail/operations.hpp
index 5dd59db..b7aff09 100644
--- a/include/chilbert/detail/operations.hpp
+++ b/include/chilbert/detail/operations.hpp
@@ -110,7 +110,7 @@ pop_count(const uint64_t field)
/// Return 1 + the index of the least significant 1-bit of `field`, or zero
template<typename T>
inline int
-pop_count(const T field);
+pop_count(T field);
template<>
inline int