aboutsummaryrefslogtreecommitdiffstats
path: root/include/chilbert/detail/MultiBitVec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/chilbert/detail/MultiBitVec.hpp')
-rw-r--r--include/chilbert/detail/MultiBitVec.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/chilbert/detail/MultiBitVec.hpp b/include/chilbert/detail/MultiBitVec.hpp
index 9053a04..bf1802c 100644
--- a/include/chilbert/detail/MultiBitVec.hpp
+++ b/include/chilbert/detail/MultiBitVec.hpp
@@ -165,7 +165,7 @@ public:
size_t find_first() const
{
for (size_t i = 0; i < num_racks(); ++i) {
- const int j = chilbert::detail::find_first(rack(i));
+ const auto j = chilbert::detail::find_first(rack(i));
if (j) {
return (i * bits_per_rack) + static_cast<size_t>(j);
}