diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2017-04-14 00:15:49 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2017-04-14 00:15:49 -0500 |
| commit | bf17ee7422d4ebf55b6eeafea6f6a74cabe2441a (patch) | |
| tree | 73719191571a38ee942fc0002481521e3e3e7ebb /build.rs | |
| parent | 398a5ebc5c7ad10e3278aea7ff61da2644c04748 (diff) | |
pass P0 to init, derive GreaterThanOrEqual for U0
Diffstat (limited to 'build.rs')
| -rw-r--r-- | build.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,8 +76,8 @@ fn main() { } // GreaterThanOrEqual - for i in 1..(1 << bits) + 1 { - for j in 1..(i + 1) { + for i in 0..(1 << bits) + 1 { + for j in 0..(i + 1) { let i = Ident::new(format!("U{}", i)); let j = Ident::new(format!("U{}", j)); |
