We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0549d6 commit 98ccaf8Copy full SHA for 98ccaf8
1 file changed
generate/src/main.rs
@@ -199,7 +199,11 @@ fn main() {
199
// Each chunk can be both a predecessor (back half) and a successor
200
// (front half), so next_of can form cycles with no chain start.
201
// We broke chunk 0's cycle above; verify no others exist.
202
- assert_eq!(dense_to_halfdense.len(), num_chunks, "not all chunks were laid out");
+ assert_eq!(
203
+ dense_to_halfdense.len(),
204
+ num_chunks,
205
+ "not all chunks were laid out",
206
+ );
207
208
for index in &mut index_start {
209
*index = dense_to_halfdense[index];
0 commit comments