aboutsummaryrefslogtreecommitdiffstats
path: root/include/chilbert
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-09-16 21:23:13 -0400
committerDavid Robillard <d@drobilla.net>2022-09-16 22:31:06 -0400
commit5cb9bad2fadd9bfb591efabd630a07e65f4b4cb3 (patch)
treedf97c89372fe158ca9709b5b3efaa1b79f5a50d3 /include/chilbert
parent2e4d666eec1a372d4b64c527d6c4945ad98d2b58 (diff)
downloadchilbert-5cb9bad2fadd9bfb591efabd630a07e65f4b4cb3.tar.gz
chilbert-5cb9bad2fadd9bfb591efabd630a07e65f4b4cb3.tar.bz2
chilbert-5cb9bad2fadd9bfb591efabd630a07e65f4b4cb3.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 ed9dfac..04d2689 100644
--- a/include/chilbert/detail/operations.hpp
+++ b/include/chilbert/detail/operations.hpp
@@ -122,7 +122,7 @@ pop_count<unsigned long long>(const unsigned long long& field)
/// Return 1 + the index of the least significant 1-bit of `field`, or zero
template<typename T>
inline int
-find_first(const T field);
+find_first(T field);
template<>
inline int