Commit bed4707
Use Rust nightly from October 14th, 2024 (#9579)
Summary:
Although the nightly from October 13th is the last one prior to the 1.83 beta cut, it's missing
rust-lang/rust#131287 which landed in 1.83.0.
This causes HHBC compilation to fail:
```
error: `std::option::Option::<T>::unwrap` is not yet stable as a const fn
--> hackc/hhbc/cargo/hhbc/../../types.rs:153:17
|
153 | let parts = name.as_bytes().split_first().unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(const_option)]` to the crate attributes to enable
```
Update to the nightly from the next day instead to pull in this change.
Pull Request resolved: #9579
Reviewed By: dtolnay
Differential Revision: D67995906
fbshipit-source-id: 3fc667aa52d8c4765a418eda033576aa0477373f1 parent c77faa0 commit bed4707
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | | - | |
| 42 | + | |
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
| |||
0 commit comments