Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI #5

Merged
merged 2 commits into from
Feb 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix
  • Loading branch information
kampersanda committed Feb 17, 2024
commit 50372147cff50d89f7f45cab302ac1eefd443098
4 changes: 2 additions & 2 deletions src/index/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl<T: CodeInt> Index<T> {
}

/// Gets the number of defined blocks in multi-index.
pub fn num_blocks(&self) -> usize {
pub const fn num_blocks(&self) -> usize {
self.num_blocks
}

Expand Down Expand Up @@ -349,7 +349,7 @@ where
let sig = self.siggen.next();
if let Some(a) = table.access(sig as usize) {
for v in a {
self.answers.push(*v as u32);
self.answers.push(*v);
}
}
}
Expand Down
Loading