Skip to content

Commit 813a962

Browse files
committed
Replace > with >=
1 parent 012dceb commit 813a962

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ fn main() {
4040
println!("cargo:rustc-cfg=libc_deny_warnings");
4141
}
4242

43-
// Rust > 1.13 supports long array:
44-
if rustc_minor_ver > 13 || rustc_dep_of_std {
43+
// Rust >= 1.14 supports long array:
44+
if rustc_minor_ver >= 14 || rustc_dep_of_std {
4545
println!("cargo:rustc-cfg=libc_long_array");
4646
}
4747

0 commit comments

Comments
 (0)